nlme (version 3.1-1)

fixed.effects.lme: Extract lme Fixed Effects

Description

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

Usage

fixed.effects(object)

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

coef.lme, random.effects.lme

Examples

Run this code
data(Orthodont)
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject)
fixed.effects(fm1)

Run the code above in your browser using DataCamp Workspace