Are multcompare plots compatible with subplots?
이전 댓글 표시
Does anyone know if it is possible to have the graphs from multcompare be plotted in subplots?
- load carsmall
- [p,t,st] = anova1(MPG,Origin,'off');
- [p,t,st2] = anova1(Displacement,Origin,'off');
- figure
- [c,m,h,nms] = multcompare(st);
- figure
- [c,m,h,nms] = multcompare(st2);
The script above generates 2 graphs. I have tried every which way to get the graphs to be in a 2,1 subplot but can't do it.
채택된 답변
추가 답변 (1개)
Sergio
2013년 7월 24일
0 개 추천
But meansgraph.m is a Read Only file. How can I delet that line?
댓글 수: 2
Tom Lane
2013년 7월 25일
If you control the disk where it is stored, you may just be able to overwrite the old file. Otherwise you may have to make your own copies of multcompare, meansgraph, and perhaps some others, and place them in your own area.
Kamil Antos
2019년 5월 20일
You can create local version of meansgraph.m with commented 'clf'. Matlab will use this file.
카테고리
도움말 센터 및 File Exchange에서 Analysis of Variance and Covariance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!