Learn R Programming

galamm (version 0.2.2)

print.summary.galamm: Print method for summary GALAMM fits

Description

Print method for summary GALAMM fits

Usage

# S3 method for summary.galamm
print(x, digits = max(3, getOption("digits") - 3), ...)

Value

Summary printed to screen. Invisibly returns the argument x.

Arguments

x

An object of class summary.galamm returned from summary.galamm.

digits

Number of digits to present in outputs.

...

Further arguments passed on to other methods. Currently used by stats::printCoefmat for printing approximate significance of smooth terms.

Author

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

References

See Also

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

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

Examples

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

summary(mod)

Run the code above in your browser using DataLab