"summary" method for class glmm
objects.
# S3 method for glmm
summary(object, ...)# S3 method for summary.glmm
print(x, digits = max(3, getOption("digits") - 3),
signif.stars = getOption("show.signif.stars"), ...)
The function summary.glmm
computes and returns a list of summary statistics of the fitted generalized linear mixed model given in object
, using the components (list elements) "call"
and "terms"
from its argument, plus
a matrix for the fixed effects. The matrix has columns for the estimated coefficient, its standard error, t-statistic and corresponding (two-sided) p-value.
a matrix with columns for the variance components. The matrix has columns for the estimated variance component, its standard error, t-statistic and corresponding (one-sided) p-value.
the design matrix for the fixed effects.
the design matrix for the random effects.
the response vector.
the call for the fixed effects.
the call for the random effects.
the family used to fit the model.
the call to glmm
.
the canonical link function.
an object of class glmm
, usually, resulting from a
call to glmm
.
an object of class summary.glmm
, usually, a result of a
call to summary.glmm
.
the number of significant digits to use when printing.
logical. If TRUE
, “significance stars”
are printed for each coefficient.
further arguments passed to or from other methods.
Christina Knudson