get_comparisons {rstatix} | R Documentation |
Create a List of Possible Comparisons Between Groups
Description
Create a list of possible pairwise comparisons between groups. If a reference group is specified, only comparisons against reference will be kept.
Usage
get_comparisons(data, variable, ref.group = NULL)
Arguments
data |
a data frame |
variable |
the grouping variable name. Can be unquoted. |
ref.group |
a character string specifying the reference group. Can be unquoted. If numeric, then it should be quoted. If specified, for a given grouping variable, each of the group levels will be compared to the reference group (i.e. control group). If |
Value
a list of all possible pairwise comparisons.
Examples
# All possible pairwise comparisons
ToothGrowth %>%
get_comparisons("dose")
# Comparisons against reference groups
ToothGrowth %>%
get_comparisons("dose", ref.group = "0.5")
# Comparisons against all (basemean)
ToothGrowth %>%
get_comparisons("dose", ref.group = "all")
[Package rstatix version 0.7.2 Index]