Skip to content
Prev 30468 / 398513 Next

multiple numerical variables in aov

Rishabh Gupta wrote:
Rishabh:
   The default multivariate test would be based on Pillai's 
trace.  That may meet your needs.  Also, note how the following 
differ:

summary(manova(cbind(v1, v2, v3) ~ g, data = mydata))

vs.

summary(aov(cbind(v1, v2, v3) ~ g, data = mydata))

   So if I understood your initial request, I think you want 
summary(manova()) and not summary(aov()).

hope it helps,

Chuck Cleland