Displaying 1 result from an estimated 1 matches for "depvariablesmatrix".
2010 Apr 03
1
Writing summary.aov results to a file which can be opened in Excel
...cts seen in the data I'm
working with. There may be a better way of getting at this but if there is I
don't know it!).
Searching through a number of different forums, I decided that the manova
command might be appropriate for my purposes.
I'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 o...