Can anyone tell me if the the multiple comparison of Kruskal Wallis test in R Agricolae package is a specific post hoc test? How does it work?
If it is a specific post hoc test, what is it? Could anyone recommend me literature?
Thank you!
Can anyone tell me if the the multiple comparison of Kruskal Wallis test in R Agricolae package is a specific post hoc test? How does it work?
If it is a specific post hoc test, what is it? Could anyone recommend me literature?
Thank you!
They did give you a choice of tests there. You can specify the type of test you want under Did you have a look at the script?
kruskal(y, trt, alpha = 0.05, p.adj=c("none","holm","hommel",
"hochberg", "bonferroni", "BH", "BY", "fdr"), group=TRUE, main =
NULL,console=FALSE)
p.adj aren't different tests. They are p-value adjustment methods to account for multiple tests.
– Sal Mangiafico
Dec 10 '19 at 23:09