Displaying 1 result from an estimated 1 matches for "depvariable1".
Did you mean:
depvariable2
2010 Apr 03
1
Writing summary.aov results to a file which can be opened in Excel
...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 1187 0.41821 0.00035
---
Signif. codes: 0 ?***? 0.001 ?**? 0.01 ?*? 0.05 ?.? 0....