search for: pacrpli

Displaying 1 result from an estimated 1 matches for "pacrpli".

Did you mean: pacrplis
2009 Mar 17
1
coefficient graph
...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(PACRP) > PACRP.coef <- coef(...