Displaying 2 results from an estimated 2 matches for "redinteract".
2009 Mar 17
1
coefficient graph
...d like to make a graph of coefficients of the intercept, variable 1, and
variable 2 (and possibly the interaction between variable 1 and variable
2). When I use the lmList function as attached below, it shows a nice
coefficient graph.
> PACRP.lis <- lmList(PAffect ~ CRPC + CRPT + CINT | ID, redinteract)
> coef(PACRP.lis)
> PACRPlis.coef <- coef(PACRP.lis)
> plot(PACRPlis.coef)
However, when I'd like to make a graph using the lmer function, it shows the
error message below.
> PACRP <- lmer(PAffect ~ CRPC + CRPT + CINT + (1 + CRPC + CRPT + CINT |ID),
redinteract)
> coef...
2009 Mar 15
2
xyplot of a specific ID number
Dear R list members,
I have a question regarding xyplot. I managed to make a xyplot of all the
IDs by using the syntax below:
xyplot(PA ~ CRPC + CRPT | ID, data = redinteract)
Now, I'd like to make a graph of a specific ID number (e.g., only ID number
301). I thought I could use "subset", but it seems to be not working.
Could anyone let me know how I can make a graph of a specific ID?
Thank you for your help in advance!
[[alternative HTML version del...