Extract lme Fixed Effects

Usage

fixef(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 Bates

See Also

coef.lme, ranef.lme

Examples

library(lme)
data(Orthodont)
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject)
fixef(fm1)


[Package Contents]