我想找出不同条件之间可能存在的差异。我有 n 个科目,我分别对每个科目的每个条件都有一个平均值。受试者之间的值差异很大,这就是为什么我想执行重复测量 anova 来控制它。
我的内部主题因素将是当时的条件,而我没有任何主题之间的因素。
So far I have the following code:
%% create simulated numbers
meanPerf = randn(20,3);
%% create a table array with the mean performance for every condition
tableData = table(meanPerf(:,1),meanPerf(:,2),meanPerf(:,3),'VariableNames',{'meanPerf1','meanPerf2','meanPerf3'})
tableInfo = table([1,2,3]','VariableNames',{'Conditions'})
%% fit repeated measures model to the table data
repMeasModel = fitrm(tableData,'meanPerf1meanPerf3~1','WithinDesign',tableInfo);
%% perform repeated measures anova to check for differences
ranovaTable = ranova(repMeasModel)
我的第一个问题是:我这样做正确吗?
第二个问题是:我如何进行事后分析以找出哪些条件彼此之间存在显着差异?
我尝试使用:
multcompare(ranovaTable,'Conditions');
但这产生了以下错误:
Error using internal.stats.parseArgs (line 42)
Wrong number of arguments.
我正在使用 Matlab 2015b。
如果你能帮助我,那就太好了。我想我正在为此失去理智。
最好的,菲尔