Extract lme Fixed Effects

DESCRIPTION:

The fixed effects estimates corresponding to the linear mixed-effects model represented by object are returned.

USAGE:

fixef(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) 
fixef(fm1)