View source: R/summary.galamm.R
print.summary.galamm | R Documentation |
Print method for summary GALAMM fits
## S3 method for class 'summary.galamm'
print(x, digits = max(3, getOption("digits") - 3), ...)
x |
An object of class |
digits |
Number of digits to present in outputs. |
... |
Further arguments passed on to other methods. Currently used by
|
Summary printed to screen. Invisibly returns the argument x
.
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).
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()
# 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.