フィルターのクリア

How to plot dendrogram and stars for pair-wise significance levels in anova?

2 ビュー (過去 30 日間)
Diemo Schwarz
Diemo Schwarz 2015 年 6 月 18 日
コメント済み: Diemo Schwarz 2016 年 3 月 22 日
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?

回答 (1 件)

Alberto
Alberto 2015 年 6 月 18 日
Something like this?
load carbig
X = [MPG Acceleration Weight Displacement];
[d,p,stats] = manova1(X,Origin);
manovacluster(stats)
Check documentation for use manovacluster
  1 件のコメント
Diemo Schwarz
Diemo Schwarz 2016 年 3 月 22 日
Dear Alberto, thanks for your answer. It comes close! The height of the split points should be uniform (just to indicate grouping), and there should be a number of stars over the top split, indicating the significance. I'll see if I find an example in existing publications.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeRepeated Measures and MANOVA についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by