how do I input a one-way anova function?
7 次查看(过去 30 天)
显示 更早的评论
I have 4 sample sizes. The first one has 11 observations, the second and fourth ones have 9 and the third one has 8. I am told that as inputs I have to include these 4 samples and the level of significance which in this case is 0.05. How do i make this function in such a way that gives me one-way anova results please?
Thank you in advance
0 个评论
回答(1 个)
Jeff Miller
2022-5-27
scores = []; % list the 37 scores inside the brackets, all of group 1 first, then group 2, etc
group = {'a' 'a' 'a' } % list 37 group codes, i.e. 11 a's for group 1, then 9 'b's for group 2, etc
[p,tbl,stats] = anova1(scores,group);
The p value is part of the output and you can just check whether it is less than 0.05
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!