How to use Mauchly's test results in matlab2014a

5 ビュー (過去 30 日間)
William
William 2014 年 10 月 6 日
編集済み: William 2022 年 7 月 20 日
Hi, I wanted to conduct 2-way repeated measures ANOVA by matlab2014a.I had two with-subjects factors,Factor1,Factor2.Before I did the ANOVA,I did Mauchly's test firstly and found the output was:
But when I did the same analysis by SPSS,the output was:
So I was very confused with the two different kinds of output. I need to know:
1) What's the corresponding relationship between the data in SPSS' output and the matlab' output on Mauchly's test ?
2) How to use the input argument 'c' in mauchly function of matlab? If I wanted to get the same output of SPSS in matlab,how could I set the argument 'c' ?
3) From the output table of SPSS,I get 3 p value from Mauchly's test and know exactly which source(Factor1,Factor2,or Factor1*Factor2) don't meet the sphericity assumption and find the corresponding P value(P value of main effect or interaction effect) after adjustment in the table "Tests of Within-Subjects Effects".However,I get just one p value from Mauchly's test in matlab.How could I know which P value was adjusted in the table output by the function 'ranova'?That is to say,I need to know which data(p value of main effect or interaction effect) was adjusted when the result of Mauchly's test was significant in matlab?
I will be very appreciated for your answers. Thank your!

採用された回答

Tom Lane
Tom Lane 2014 年 10 月 7 日
You can ask for the C matrices from the ranova function, for example:
[tbl,a,c] = ranova(R,'within','w1*w2')
Then you can supply that to mauchly:
mauchly(R,c)
  3 件のコメント
Tom Lane
Tom Lane 2014 年 10 月 9 日
Look at the output from the ranova command. I suspect you will find four within-subject tests included. It may be that the first two are just univariate tests so there is no issue of sphericity for them.
William
William 2014 年 10 月 12 日
編集済み: William 2022 年 7 月 20 日
Hi,
This is my codes for ANOVA:
When I opened the output argument 'c' of the ranova as you said, I saw a cell:
The elements of this cell were:
c{1,1}:
c{1,2}:
c{1,3}:
c{1,4}:
I still don't know why there were 4 elements.
So I still didn't know why there were 4 rows in the output argument of 'mauchly(R,c)', which was different from the output argument of SPSS.
Could you explain in detail? Thank you !

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRepeated Measures and MANOVA についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by