Rev 3365 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{fixef}\docType{genericFunction}\alias{fixef}\alias{fixed.effects}\alias{fixef,ANY-method}\alias{fixef,mer-method}\alias{fixef,glmer-method}\title{Extract Fixed Effects}\description{Extract the estimates of the fixed effects parameters from a fitted model.}\usage{fixef(object, \dots)fixed.effects(object, \dots) # deprecated}\arguments{\item{object}{any fitted model object from which fixed effectsestimates can be extracted.}\item{\dots}{optional additional arguments. Currently none are used inany methods.}}\value{a named numeric vector of fixed effects estimates.}\examples{data(sleepstudy)fixef(lmer(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy))}\keyword{models}