fixef.lme {nlme} | R Documentation |
The fixed effects estimates corresponding to the linear mixed-effects
model represented by object
are returned.
fixef(object, ...)
object |
an object inheriting from class lme , representing
a fitted linear mixed-effects model. |
... |
some methods for this generic require additional arguments. None are used in this method. |
a vector with the fixed effects estimates corresponding to
object
.
Jose Pinheiro Jose.Pinheiro@pharma.novartis.com and Douglas Bates bates@stat.wisc.edu
data(Orthodont) fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject) fixed.effects(fm1) fixef(fm1)