pac_compare {esvis} | R Documentation |
Compute the difference in the proportion above a specific cut location
Description
Computes the difference in the proportion above the specified cuts
for all possible pairwise comparisons of the groups specified by the
formula
.
Usage
pac_compare(data, formula, cuts, ref_group = NULL)
Arguments
data |
The data frame used for estimation - ideally structured in a tidy format. |
formula |
A formula of the type |
cuts |
Optional vector of cut scores. If supplied, the ECDF will be guaranteed to include these points. Otherwise, there could be gaps in the ECDF at those particular points (used in plotting the cut scores). |
ref_group |
Optional. A character vector or forumla listing the
reference group levels for each variable on the right hand side of the
formula, supplied in the same order as the formula. Note that if using the
formula version, levels that are numbers, or include hyphens, spaces, etc.,
should be wrapped in back ticks (e.g.,
|
Value
Tidy data frame of the proportion above the cutoff for each (or selected) groups.
See Also
[esvis::pac(), esvis::tpac(), esvis::tpac_diff()]
Examples
# Compute differences for all pairwise comparisons for each of three cuts
pac_compare(star,
reading ~ condition,
cuts = c(450, 500, 550))
pac_compare(star,
reading ~ condition + freelunch + race,
cuts = c(450, 500))
pac_compare(star,
reading ~ condition + freelunch + race,
cuts = c(450, 500),
ref_group = ~small + no + white)