Hi, @pstjacques.
The p values shown in the table are obtained as:
P value adjustment method: none
Take a look at the attached screenshot, where I use the Rj module and this little r script.
- Code: Select all
library(PMCMR)
options(digits=5)
y <- data.matrix(data[1:6])
friedman.test(y)
# P value adjustment method: none
posthoc.friedman.conover.test(y, p.adj="none")
# P value adjustment method: bonferroni
posthoc.friedman.conover.test(y, p.adj="bonferroni")

- ScreenShot.png (105.26 KiB) Viewed 831 times
Cheers,
Maurizio