View source: R/pairwise_prop_test.R
pairwise_prop_test | R Documentation |
A tidy calculation of pairwise proportional comparisons between group levels with corrections for multiple testing
pairwise_prop_test(df, outcome, subgroups, vs_rest = FALSE, min_n = 30, ...)
df |
A data frame or tibble of raw observations |
outcome |
Response vector |
subgroups |
Grouping vector |
vs_rest |
Logical indicating whether to test each level of a subgroup to the rest of the data |
min_n |
A scalar numeric indicating the minimum sample size to test on. Defaulted to n=30. |
... |
Additional arguments passed on to pairwise.prop.test and prop.test |
A tibble with output from pairwise.prop.test
mydf <- data.frame(smokers = c(rbinom(100, 1, 0.8),
rbinom(70, 1, 0.7),
rbinom(50, 1, 0.6)),
region = c(rep("A", 100), rep("B", 70), rep("C", 50)))
pairwise_prop_test(mydf, smokers, region)
pairwise_prop_test(mydf, smokers, region, vs_rest = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.