MATLAB: Multivariate analysis of variance in Matlab

manovaMATLABstatisticstable

Hi all,
I am trying to run a n- way multivariate analysis of variance on the attached table.
each colum (a,b,c …) is one dependent variable, while each row is one group.
each cell contains the values of that specific group for each dependent variable.
can you suggest me which function to use and how the data should be organized?
and in case they have to be rearranged in another way, can you suggest me a fast way to rearrange them?
Thank you very much

Best Answer

You need to arrange your data in a table with one row per individual group member. For example, your first group seems to have about 55 members that will go into 55 rows, your second group has about 133 members (133 rows), and so on. So, you need a table with about 700-800 rows, as the sum of the different group sizes.
In the required table, you need one column for each dependent variable, as you have now, plus you need one more column with values indicating group membership, e.g., values like "GroupA", GroupB", etc.
It isn't actually possible to produce the required table from the *.mat file that you posted, because it appears that you have some missing data. For example, in the first row (group) some variables have 55 scores but others have only 53 or 54. That makes it look like there were 55 members in that group but scores were lost on a few variables for a few of the group members. The manova depends on the correlations among variables, so the data set has to make it clear how the scores of different variables match up. This depends on which of the (say, 55) first group members were missing data on variables 2 and 7, for example, and there is no way to tell that from the posted mat file.