coef.LmME {tramME} | R Documentation |
Extract the coefficients of an LmME
model
Description
Extracts the fixed effects coefficents (default behavior), the baseline parameters or all (baseline, fixed and random) coefficients of the model.
Usage
## S3 method for class 'LmME'
coef(object, as.lm = FALSE, fixed = TRUE, ...)
Arguments
object |
An |
as.lm |
If |
fixed |
If |
... |
Optional arguments passed to |
Details
See also the documentation of coef.tramME
.
Value
A numeric vector of the transformed coefficients.
Examples
data("sleepstudy", package = "lme4")
fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy)
coef(fit, as.lm = TRUE)
[Package tramME version 1.0.6 Index]