Extract lmList Fixed Effects
Usage
fixed.effects(object)
Arguments
object
|
an object inheriting from class lmList , representing
a list of lm objects with a common model.
|
Description
The average of the coefficients corresponding to the lm
components of object
is calculated.Value
a vector with the average of the individual lm
coefficients in
object
.Author(s)
Jose Pinheiro and Douglas BatesSee Also
lmList
, random.effects.lmList
Examples
library(lme)
data(Orthodont)
fm1 <- lmList(distance ~ age, Orthodont, groups = ~Subject)
fixed.effects(fm1)