Summary output for a linear mixed model fitted with lmm
.
# S3 method for lmm
summary(
object,
level = 0.95,
robust = FALSE,
print = TRUE,
columns = NULL,
digits = 3,
digits.df = 1,
digits.p.value = 3,
hide.data = FALSE,
hide.fit = FALSE,
hide.cor = NULL,
type.cor = NULL,
hide.var = NULL,
hide.sd = NULL,
hide.re = NULL,
hide.mean = FALSE,
...
)
A list containing elements displayed in the summary:
correlation
: the correlation structure.
variance
: the variance structure.
sd
: the variance structure expressed in term of standard deviations.
mean
: the mean structure.
[lmm] output of the lmm
function.
[numeric,0-1] confidence level for the confidence intervals.
[logical] Should robust standard errors (aka sandwich estimator) be output instead of the model-based standard errors.
[logical] should the output be printed in the console.
[character vector] Columns to be output for the fixed effects.
Can be any of "estimate"
, "se"
, "statistic"
, "df"
, "null"
, "lower"
, "upper"
, "p.value"
.
[interger, >0] number of digits used to display estimates.
[interger, >0] number of digits used to display degrees of freedom.
[interger, >0] number of digits used to display p-values.
[logical] should information about the dataset not be printed.
[logical] should information about the model fit not be printed.
[logical] should information about the correlation structure not be printed.
[character] should the correlation matrix be display ("matrix"
) or the parameter values ("param"
).
[logical] should information about the variance not be printed.
[logical] should information about the standard deviation not be printed.
[logical] should information about the random effect not be printed.
[logical] should information about the mean structure not be printed.
not used. For compatibility with the generic function.