Description Usage Arguments Value Examples
The function iteratively learns which observations should at least be excluded from the data to reach a conservative 'goal value' for the statistic of interest. It does so by relying on a genetic algorithm, which efficiently explores the (usually vast) space of possible subsets. The result can uncover impactful subsamples and fuel discussions of robustness. Necessary arguments include the dataframe, a function to compute the statistic of interest ('statistic_computation' see examples), and the goal value of interest.
1 2 3 4 5 6 7 | loop_break(
data = NA,
goal_value = NA,
statistic_computation = NA,
max_exclusions = 3,
random_seed = 42
)
|
data |
A data.frame containing the observations as rows. |
goal_value |
This conservative value (e.g., small effect size) is targeted. |
statistic_computation |
A formula which has 'data' as input and returns the statistic of interest. |
max_exclusions |
maximum number of cases to be excluded |
random_seed |
Seed for replicability. |
Vector of row indeces to be excluded
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.