Extract lmList Fixed Effects
DESCRIPTION:
The average of the coefficients corresponding to the
lm
components of
object
is calculated.
USAGE:
fixef(object)
REQUIRED ARGUMENTS:
object
an object inheriting from class
lmList
, representing a list of
lm
objects with a common model.
VALUE:
a vector with the average of the individual
lm
coefficients in
object
.
SEE ALSO:
,
EXAMPLES:
fm1 <- lmList(distance ~ age | Subject, Orthodont) fixef(fm1)