coef.tramME {tramME} | R Documentation |
Extract the coefficients of the fixed effects terms.
## S3 method for class 'tramME' coef(object, with_baseline = FALSE, ...)
object |
A tramME object (fitted or unfitted) |
with_baseline |
If TRUE, include the baseline parameters, too. |
... |
Optional parameters (ignored). |
Numeric vector of parameter values.
data("sleepstudy", package = "lme4") mod <- BoxCoxME(Reaction ~ Days + (Days | Subject), data = sleepstudy, nofit = TRUE) coef(mod, with_baseline = TRUE)