pairwise_chisq_test | R Documentation |
A pairwhise non-parametric chi-squared test for difference between grouped categorical variables.
pairwise_chisq_test(x, g, p.adjust.method = stats::p.adjust.methods, ...)
x |
A response vector |
g |
A grouping vector. If not a factor it will be converted to one. |
p.adjust.method |
A character string specifying the method for multiple
testing adjustments. See |
... |
Additional arguments passed to |
Modified from here: https://stats.stackexchange.com/questions/85664/r-procedure-for-comparing-multiple-categorical-variables-similar-to-anova-fol
group <- rep(LETTERS[1:3], 10)
sex <- rep(c('Male', 'Female'), 15)
pairwise_chisq_test(sex, group, p.adjust.method = "none")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.