クラスカルウォリス検定後の多重比較について
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
クラスカルウォリス検定後の多重比較についてです。
MATLAB R2020b上のコマンドウインドウ上で下記コマンドでクラスカルウォリス検定を実施しました。
>>[p,tbl,stats] = kruskalwallis(A)
引数Aには、ノンパラメトリックな3群のデータが入っています。この検定結果が有意差ありとなりました。
p =
1.9623e-07
stats =
フィールドをもつ struct:
gnames: [3×1 char]
n: [40 40 40]
source: 'kruskalwallis'
meanranks: [77.5000 67.8250 36.1750]
sumt: 0
この後どの群と群の間に有意差があるかを見たいため、下記コマンドを実行しました。
このコマンドは何の多重検定を使用しているのでしょうか。
0 commentaires
Réponses (1)
Takafumi
le 10 Fév 2021
multcompare関数での手法は、デフォルト設定でTukey-Kramerになっており、
ノンパラメトリック用のアルゴリズムは提供されていません。
ノンパラメトリックの多重比較にも対応できるDunnの方法が、File Exchange もあります。
0 commentaires
Voir également
Catégories
En savoir plus sur テスト フレームワーク dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!