fixef.nlmm {nlmm}R Documentation

Extract Generalized Mixed-Effects Models Coefficients

Description

fixef extracts estimated fixed effects from nlmm objects.

Usage

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

Arguments

object

a nlmm object.

...

not used.

Value

a vector of estimated fixed effects.

Author(s)

Marco Geraci

See Also

nlmm summary.nlmm

Examples

## Not run: 
data(rats)
fit <- nlmm(y ~ trt*time, random = ~ 1, group = id, data = rats,
control = nlmmControl(multistart = FALSE))
fixef(fit)

## End(Not run)

[Package nlmm version 1.1.0 Index]