Learn R Programming

mixlm (version 1.3.0)

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

Description

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

Usage

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

Arguments

x

AnovaMix object to be printed.

...

Additional arguments (not supported yet).

Author

Kristian Hovde Liland

See Also

AnovaMix, lm, Anova

Examples

Run this code
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")

Run the code above in your browser using DataLab