Main Content

Multivariate Analysis of Variance for Repeated Measures

Multivariate analysis of variance analysis is a test of the form A*B*C = D, where B is the p-by-r matrix of coefficients. p is the number of terms, such as the constant, linear predictors, dummy variables for categorical predictors, and products and powers, r is the number of repeated measures, and n is the number of subjects. A is an a-by-p matrix, with rank ap, defining hypotheses based on the between-subjects model. C is an r-by-c matrix, with rank crn – p, defining hypotheses based on the within-subjects model, and D is an a-by-c matrix, containing the hypothesized value.

manova tests if the model terms are significant in their effect on the response by measuring how they contribute to the overall covariance. It includes all terms in the between-subjects model. manova always takes D as zero. The multivariate response for each observation (subject) is the vector of repeated measures.

manova uses four different methods to measure these contributions: Wilks’ lambda, Pillai’s trace, Hotelling-Lawley trace, Roy’s maximum root statistic. Define

T=AB^CD,Z=A(XX)1A

where X is a design matrix containing the factor values for the MANOVA. Then, the hypotheses sum of squares and products matrix is

Qh=TZ1T,

and the residuals sum of squares and products matrix is

Qe=C(RR)C,

where

R=YXB^.

The matrix Qh is analogous to the numerator of a univariate F-test, and Qe is analogous to the error sum of squares. Hence, the four statistics manova uses are:

  • Wilks’ lambda

    Λ=|Qe||Qh+Qe|=11+λi.

    where λi are the solutions of the characteristic equation |QhλQe| = 0.

  • Pillai’s trace

    V=trace(Qh(Qh+Qe)1)=θi,

    where θi values are the solutions of the characteristic equation Qhθ(Qh + Qe) = 0.

  • Hotelling-Lawley trace

    U=trace(QhQe1)=λi,

  • Roy’s maximum root statistic

    Θ=max(eig(QhQe1)).

References

[1] Charles, S. D. Statistical Methods for the Analysis of Repeated Measurements. Springer Texts in Statistics. Springer-Verlag, New York, Inc., 2002.

See Also

|