我正在对我的数据集执行 Kruskal-Wallis 测试,我正在尝试调整 p 值,但它似乎不起作用,这是我的代码:
> kruskal.test(df$Folate_biosynthesis, df$Group, p.adj="holm")
Kruskal-Wallis rank sum test
data: df$Folate_biosynthesis and df$Group Kruskal-Wallis chi-squared
= 8.5144, df = 5, p-value = 0.1301
> kruskal.test(df$Folate_biosynthesis, df$Group, p.adj="none")
Kruskal-Wallis rank sum test
data: df$Folate_biosynthesis and df$Group Kruskal-Wallis chi-squared
= 8.5144, df = 5, p-value = 0.1301
正如你所看到的,如果我把p.adjust = "none"
我得到了完全相同的结果。这怎么可能?
在此先感谢所有愿意提供帮助的人。安德烈亚