repeated measure anova two options
Mostrar comentarios más antiguos
Hello,
I am trying to use repeated measure ANOVA “ranova” in MATLAB. According to MATLAB tutorial, there are two option: 1: ranova(rm) and 2: ranova(rm,'WithinModel',WM).
I tried both and they give different results for the within model analysis (in my example the within model variable is time; I have repeated measurements). Option 1 has a closer results to those produced by other software like R; however, it does not give me the between model results which are the main effect of between model variables and their interactions. I appreciate it if you let me know what the difference is.
Also, the sums of squares are not the same as what I get from R. Could you please help me find out about this discrepancy?
Best,
Sepideh.
1 comentario
Sophi Af
el 15 de Dic. de 2020
Respuestas (1)
Jeff Miller
el 15 de Dic. de 2020
Not sure but I think you need
T = table([1 2]','VariableNames',{'Time'});
T.Time = categorical(T.Time); % add this line
Maybe post one of your 't' data tables so the design is clearer?
3 comentarios
Sophi Af
el 23 de Dic. de 2020
Jeff Miller
el 24 de Dic. de 2020
If each line of your t table represents a different person, then you should use the ranova command including 'WithinModel'.
Sophi Af
el 24 de Dic. de 2020
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!