このパッケージPMCMR
を使用して、ポスドクのクルスカル・ネメニテストを実行しています。デフォルト設定でテストを実行すると、次のようになります。
posthoc.kruskal.nemenyi.test(x=coastal$HIGH_MORTGAGE, g=coastal$SIZECLASS, method="Tukey")
次の結果と警告が表示されます。
Pairwise comparisons using Tukey and Kramer (Nemenyi) test
with Tukey-Dist approximation for independent samples
data: coastal$HIGH_MORTGAGE and coastal$SIZECLASS
Large Medium
Medium 0.931 -
Small 0.746 0.078
P value adjustment method: none
Warning message:
In posthoc.kruskal.nemenyi.test.default(x = coastal$HIGH_MORTGAGE, :
Ties are present, p-values are not corrected.*
分布を Chisq に変更して同点の補正を適用してテストを実行すると、同じ結果が得られ、カイ 2 乗分布は使用されません。
posthoc.kruskal.nemenyi.test(x=coastal$HIGH_MORTGAGE, g=coastal$SIZECLASS, method="Chisq")
Pairwise comparisons using Tukey and Kramer (Nemenyi) test
with Tukey-Dist approximation for independent samples
data: coastal$HIGH_MORTGAGE and coastal$SIZECLASS
Large Medium
Medium 0.931 -
Small 0.746 0.078
P value adjustment method: none
Warning message:
In posthoc.kruskal.nemenyi.test.default(x = coastal$HIGH_MORTGAGE, :
Ties are present, p-values are not corrected.
パッケージにバグがあるかどうか、またはこれを解決するために私が知らない方法があるかどうかを知りたいです。