print.summary.galamm {galamm} | R Documentation |
Print method for summary GALAMM fits
Description
Print method for summary GALAMM fits
Usage
## S3 method for class 'summary.galamm'
print(x, digits = max(3, getOption("digits") - 3), ...)
Arguments
x |
An object of class |
digits |
Number of digits to present in outputs. |
... |
Further arguments passed on to other methods. Currently used by
|
Value
Summary printed to screen. Invisibly returns the argument x
.
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).
References
There are no references for Rd macro \insertAllCites
on this help page.
See Also
summary.galamm()
for the summary function and print()
for the
generic function.
Other summary functions:
anova.galamm()
,
plot.galamm()
,
plot_smooth.galamm()
,
summary.galamm()
Examples
# Linear mixed model with heteroscedastic residuals
mod <- galamm(
formula = y ~ x + (1 | id),
weights = ~ (1 | item),
data = hsced
)
summary(mod)