rstatix
rstatix copied to clipboard
Revisited a script which used to work and now getting an error
Error in parse(text = elt) :
Does anyone know what this means?
`stats1 <-df %>%
+ filter(variable=="TsTvRatio") %>%
+ filter(Sample.Type=="Swab") %>%
+ filter(DPI != "5") %>%
+ filter(DPI != "4") %>%
+ rstatix::group_by(DPI) %>%
+ rstatix::wilcox_test(value~Cohort) %>%
+ adjust_pvalue(method="none") %>%
+ add_significance("p") %>%
+ add_xy_position(x = "Cohort", dodge = 0.8) %>%
+ remove_ns(col="p")`