regmanova: Expanded MANOVA Table

Description Usage Arguments Value References See Also Examples

Description

Expands the MANOVA results from an object of class summary.aov. The results are identical to those obtained from summary.aov, but an extra line is included that prints the total degrees of freedom and the total sum of squares for each dimension of the response vector.

Usage

1
reg.manova(AOV.out)

Arguments

AOV.out

An object of class summary.aov.

Value

AOV.out returns exactly the same output as the summary.aov function, but includes an extra line that summarizes the total source of variability for each dimension of the response vector.

References

Young, D. S. (2017), Handbook of Regression Methods, CRC Press.

See Also

anova, reg.anova, summary.aov

Examples

1
2
3
4
5
6
7
8
9
 
## Applied to the amit dataset.

data(amit)

fits <- manova(cbind(TOT, AMI) ~ ., data = amit)
out <- summary.aov(fits)
mvreg.out <- lapply(out, reg.manova)
mvreg.out

HoRM documentation built on March 11, 2021, 9:07 a.m.