View source: R/summary.galamm.R
summary.galamm | R Documentation |
Summary method for class "galamm".
## S3 method for class 'galamm'
summary(object, ...)
object |
An object of class |
... |
Further arguments passed on to other methods. Currently not used. |
A list of summary statistics of the fitted model of class
summary.galamm
, containing the following elements:
AICtab
a table of model fit measures, returned by
llikAIC
.
call
the matched call used when fitting the model.
fixef
a matrix with fixed effect estimated, returned by
fixef
.
gam
List containing information about smooth terms in the model. If
no smooth terms are contained in the model, then it is a list of length
zero.
model
a list with various elements related to the model setup and
fit. See ?galamm
for details.
parameters
A list object with model parameters and related
information. See ?galamm
for details.
Lambda
An object containing the estimated factor loadings. Returned
from factor_loadings.galamm
. If there are no estimated factor
loadings, then this object is NULL
.
random_effects
a list containing the random effects.
See ?galamm
for details.
VarCorr
An object of class VarCorr.galamm
, returned from
VarCorr.galamm
.
weights
An object containing information about estimated variance
functions, when there are heteroscedastic residuals. Otherwise the object
is NULL
.
Some of the code for producing summary information has been derived
from the summary methods of mgcv
(author: Simon Wood) and
lme4
\insertCitebatesFittingLinearMixedEffects2015galamm
(authors: Douglas M. Bates, Martin Maechler, Ben Bolker, and Steve Walker).
print.summary.galamm()
for the print method and summary()
for
the generic.
Other summary functions:
anova.galamm()
,
plot.galamm()
,
plot_smooth.galamm()
,
print.galamm()
,
print.summary.galamm()
# Linear mixed model with heteroscedastic residuals
mod <- galamm(
formula = y ~ x + (1 | id),
weights = ~ (1 | item),
data = hsced
)
summary(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.