powered by
Extract the coefficients of the fixed effects terms of an LmME model.
# S3 method for LmME coef(object, as.lm = FALSE, ...)
An LmME object (fitted or unfitted).
If TRUE, return the transformed coefficients as in a lmerMod object.
lmerMod
optional parameters passed to coef.tramME
coef.tramME
A numeric vector of the transformed coefficients.
# NOT RUN { data("sleepstudy", package = "lme4") fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy) coef(fit, as.lm = TRUE) # }
Run the code above in your browser using DataLab