fixed.effects.lme {nlme} | R Documentation |
The fixed effects estimates corresponding to the linear mixed-effects
model represented by object
are returned.
fixed.effects(object)
object |
an object inheriting from class lme , representing
a fitted linear mixed-effects model. |
a vector with the fixed effects estimates corresponding to
object
.
Jose Pinheiro and Douglas Bates
library(nlme) data(Orthodont) fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject) fixed.effects(fm1)