random.effects.lmList {nlme} | R Documentation |
The difference between the individual lm
components
coefficients and their average is calculated.
random.effects(object)
object |
an object inheriting from class lmList , representing
a list of lm objects with a common model.
|
a vector with the differences between the individual lm
coefficients in object
and their average.
Jose Pinheiro and Douglas Bates
library(nlme) data(Orthodont) fm1 <- lmList(distance ~ age | Subject, Orthodont) random.effects(fm1)