summary.galamm {galamm}R Documentation

Summarizing GALAMM fits

Description

Summary method for class "galamm".

Usage

## S3 method for class 'galamm'
summary(object, ...)

Arguments

object

An object of class galamm returned from galamm.

...

Further arguments passed on to other methods. Currently not used.

Value

A list of summary statistics of the fitted model of class summary.galamm, containing the following elements:

Author(s)

Some of the code for producing summary information has been derived from the summary methods of mgcv (author: Simon Wood) and lme4 (Bates et al. 2015) (authors: Douglas M. Bates, Martin Maechler, Ben Bolker, and Steve Walker).

See Also

print.summary.galamm() for the print method and summary() for the generic.

Other summary functions: anova.galamm(), plot.galamm(), plot_smooth.galamm(), print.summary.galamm()

Examples

# Linear mixed model with heteroscedastic residuals
mod <- galamm(
  formula = y ~ x + (1 | id),
  weights = ~ (1 | item),
  data = hsced
)

summary(mod)


[Package galamm version 0.2.0 Index]