Extract lme Fixed Effects
DESCRIPTION:
The fixed effects estimates corresponding to the linear mixed-effects
model represented by
object
are returned.
USAGE:
fixed.effects(object)
REQUIRED ARGUMENTS:
- object
-
an object inheriting from class
lme
, representing
a fitted linear mixed-effects model.
VALUE:
a vector with the fixed effects estimates corresponding to
object
.
SEE ALSO:
,
EXAMPLES:
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject)
fixed.effects(fm1)