fixef {glmmTMB}R Documentation

Extract fixed-effects estimates

Description

Extract the fixed-effects estimates

Usage

## S3 method for class 'glmmTMB'
fixef(object, ...)

Arguments

object

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

...

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

Details

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

Value

a named, numeric vector of fixed-effects estimates.

Examples

data(sleepstudy, package = "lme4")
fixef(glmmTMB(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy))

[Package glmmTMB version 0.2.1.0 Index]