How to plot dendrogram and stars for pair-wise significance levels in anova?
4 次查看(过去 30 天)
显示 更早的评论
In publications with ANOVA results, often one can find box plots with a dendrogram on top and 1 to 4 stars giving the significance levels of all pairwise comparisons: p-value ≤ 0.05 -> * 0.01 -> ** 0.001 -> *** 0.0001 -> ****
Is there a script to do this in matlab?
0 个评论
回答(1 个)
Alberto
2015-6-18
Something like this?
load carbig
X = [MPG Acceleration Weight Displacement];
[d,p,stats] = manova1(X,Origin);
manovacluster(stats)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Repeated Measures and MANOVA 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!