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
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.
# NOT RUN {## 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
# }