print.galamm {galamm} | R Documentation |
Print method for GALAMM fits
Description
Print method for GALAMM fits
Usage
## S3 method for class 'galamm'
print(x, ...)
Arguments
x |
An object of class |
... |
Further arguments passed on to other methods. Currently not used. |
Value
Summary printed to screen. Invisibly returns the argument x
.
See Also
summary.galamm()
for the summary function and print()
for the
generic.
Other summary functions:
anova.galamm()
,
plot.galamm()
,
plot_smooth.galamm()
,
print.summary.galamm()
,
summary.galamm()
Examples
# Linear mixed model with heteroscedastic residuals
mod <- galamm(
formula = y ~ x + (1 | id),
weights = ~ (1 | item),
data = hsced
)
print(mod)
[Package galamm version 0.2.3 Index]