Displaying 2 results from an estimated 2 matches for "manova_result".
2006 Feb 16
2
MANOVA: how do I read off within and between Sum-of-Squares info from the manova result?
Hi all,
I am experimenting the function "manova" in R.
I tried it on a few data sets, but I did not understand the result:
I used "summary(manova_result)"
and "summary(manova_result, test='Wilks')"
and they gave a bunch of numbers...
But I need the Sum-of-Squares of BETWEEN and WITHIN matrices...
How do I read off from the R's manova results?
Any good example code and results?
Also, I am looking for tutorials/notes...
2010 Apr 03
1
Writing summary.aov results to a file which can be opened in Excel
...39;ve carried out a MANOVA in R as follows:
depvariablesmatrix <-cbind(variables[,6:1248]) #produce a data frame
containing my dependent variables
MANOVA <- manova(as.matrix(depvariablesmatrix) ~
as.factor(variables$independentvariable))
I can access the results of this using the following:
MANOVA_results <-summary.aov(MANOVA)
This produces a list of all my results in the following format:
Response depvariable1 :
Df Sum Sq Mean Sq F value Pr(>F)
as.factor(variables$independentvariable) 55 0.58179 0.01058 30.024 <
2.2e-16 ***
Residuals...