Sums of Squares and Cross-Products Matrices for a MANOVA Table
Sums of Squares and Cross-Products Matrices for a MANOVA Table
Summarizes the MANOVA results based on the sum of squares and cross-products decomposition for the regression (SSCPR), the error (SSCPE), and the overall total (SSCPTO).
SSCP.fn(fits)
Arguments
fits: An object of class manova. ## Returns
SSCP.fn returns a list of length 3 with the SSCPR, SSCPE, and SSCPTO. ## See Also
manova, reg.manova
References
Johnson, R. A. and Wichern, D. W. (2007), Applied Multivariate Statistical Analysis, Sixth Edition, Pearson.
Young, D. S. (2017), Handbook of Regression Methods, CRC Press.
Examples
## Applied to the amit dataset.data(amit)fits <- manova(cbind(TOT, AMI)~ ., data = amit)SSCP.fn(fits = fits)