필터 지우기
필터 지우기

How to use Mauchly's test results in matlab2014a

조회 수: 1 (최근 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 CenterFile Exchange에서 Repeated Measures and MANOVA에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by