Extract lme Fixed Effects
Usage
fixed.effects(object)
Arguments
object
|
an object inheriting from class lme, representing
a fitted linear mixed-effects model.
|
Description
The fixed effects estimates corresponding to the linear mixed-effects
model represented by object are returned.Value
a vector with the fixed effects estimates corresponding to
object.Author(s)
Jose Pinheiro and Douglas BatesSee Also
coef.lme, random.effects.lmeExamples
library(lme)
data(Orthodont)
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject)
fixed.effects(fm1)