I am performing a Kruskal-Wallis test on my dataset and I am trying to adjust the p-value but it does not seem to work, here is my code:
> 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
As you can see if I put p.adjust = "none"
I obtained exactly the same result. How is it possible?
Thanks in advance to everyone willing to help.
Andrea