Learn R Programming

galamm (version 0.2.3)

print.galamm: Print method for GALAMM fits

Description

Print method for GALAMM fits

Usage

# S3 method for galamm
print(x, ...)

Value

Summary printed to screen. Invisibly returns the argument x.

Arguments

x

An object of class galamm returned from galamm.

...

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

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

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

print(mod)

Run the code above in your browser using DataLab