Extract lmList Random Effects

Usage

random.effects(object)

Arguments

object an object inheriting from class lmList, representing a list of lm objects with a common model.

Description

The difference between the individual lm components coefficients and their average is calculated.

Value

a vector with the differences between the individual lm coefficients in object and their average.

Author(s)

Jose Pinheiro and Douglas Bates

See Also

lmList, fixed.effects.lmList

Examples

library(lme)
data(Orthodont)
fm1 <- lmList(distance ~ age, Orthodont, groups = ~Subject)
random.effects(fm1)


[Package Contents]