fixef {lme4}R Documentation

Extract the fixed-effects estimates

Description

Extract the estimates of the fixed-effects parameters from a fitted model.

Usage

fixef(object, ...)
fixed.effects(object, ...)  # deprecated

Arguments

object

any fitted model object from which fixed effects estimates can be extracted.

...

optional additional arguments. Currently none are used in any methods.

Value

a named, numeric vector of fixed-effects estimates.

Examples

fixef(lmer(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy))

[Package lme4 version 0.999375-42 Index]