coef.LmME {tramME} | R Documentation |
Extract the coefficients of the fixed effects terms of an LmME model.
## S3 method for class 'LmME' coef(object, as.lm = FALSE, ...)
object |
An LmME object (fitted or unfitted). |
as.lm |
If TRUE, return the transformed coefficients as in a
|
... |
optional parameters passed to |
A numeric vector of the transformed coefficients.
data("sleepstudy", package = "lme4") fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy) coef(fit, as.lm = TRUE)