print.AnovaMix: Print method for objects of class(AnovaMix)

View source: R/lm.R

print.AnovaMixR Documentation

Print method for objects of class(AnovaMix)

Description

Prints relevant information like the ANOVA table, variance components and errors.

Usage

## S3 method for class 'AnovaMix'
print(x, ...)

Arguments

x

AnovaMix object to be printed.

...

Additional arguments (not supported yet).

Note

Only balanced models are fully supported.

Author(s)

Kristian Hovde Liland

See Also

AnovaMix, lm, Anova

Examples

mixlm <- lm(y~x*r(z),
			data = data.frame(y = rnorm(8),
							  x = factor(c(rep(1,4),rep(0,4))),
							  z = factor(rep(c(1,0),4))))
Anova(mixlm,type="III")

mixlm documentation built on Aug. 8, 2023, 5:08 p.m.