fixef.lmekin {coxme} | R Documentation |
Extract the fixed effects, random effects, variance of the fixed effects, or variance of the random effects from a linear mixed effects model fit with lmekin.
## S3 method for class 'lmekin' fixef(object, ...) ## S3 method for class 'lmekin' ranef(object, ...) ## S3 method for class 'lmekin' vcov(object, ...) ## S3 method for class 'lmekin' VarCorr(x, ...)
object |
an object inheriting from class |
x |
an object inheriting from class |
... |
some methods for this generic require additional arguments. None are used in this method. |
the fixed effects are a vector and the variance of the fixed effects is a matrix. The random effects will be a list with one element for each random effects terms, as will be their variance.
Terry Therneau
lmekin
, random.effects
,
fixed.effects
efit <- lmekin(effort ~ Type + (1|Subject), ergoStool) ranef(efit)