Displaying 1 result from an estimated 1 matches for "pacrp".
2009 Mar 17
1
coefficient graph
Dear R list members,
I'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 + CR...