I have ran a Wilcoxon signed rank sum test on my paired data in R. my code is:
plot.wilcox <- wilcox.test(score ~ time, data = data, paired = TRUE)
Which post hoc test to use that would accompany the Wilcoxon signed rank sum test?
I plugged in:
plot.wilcox.bonferroni <- data %>%
wilcox.test(score ~ Category_time, paired = TRUE, p.adjust.method = "bonferroni")
plot.wilcox.bonferroni
Obviously, an error comes up. I also don't know if Bonferroni adjustment is the proper post hoc test. Should I be conducting a Dunn test, not sure if Dunn test if for paired data. Can someone help?
I'm going to guess at your error: the
%>%
-pipe is placing the data as the first unnamed argument in thewilcox.test
. There are two ways to call that function, described in?wilcox.test
:In general,
%>%
-piping allows you the option to specify which argument gets the data by using the special.
symbol. When that is not included, it goes in the first unname argument.So this is what I think you are seeing (using
airquality
, taken from examples in the doc for that function):This is because the function takes as its first unnamed argument with
x
(numeric) orformula
, a formula (aptly-named).For this function, you really only have one option to use
%>%
to feed the data: provide the.
symbol to thedata=
argument, by-name.Since we're using
data=.
, you can choose to put it almost anywhere, though if you moveOzone ~ Month
, you should likely name it as well, withformula = Ozone ~ Month
.For you, I suspect then that this will work: