Description Usage Arguments Details Value Examples
Function for computing arbitrary percentile of bootstrapped lineup proportion
1 | gen_boot_propci(lineuprops, perc = 0.05)
|
lineuprops |
A vector of bootstrapped lineup proportions |
perc |
Percentile to be computed. Must be declared by user (scalar) Defaults to .05 |
Can be used to calculate confidence intervals at desired level of alpha
Arbitrary percentile of bootstrapped lineup proportion
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #Data:
lineup_vec <- round(runif(100, 1, 6))
target_pos <- 3
k <- 6
#Bootstrap data:
lineup_boot_df <- gen_boot_samples(lineup_vec, 1000)
#Compute proportion for bootstrap samples:
lineuprops <- gen_lineup_prop(lineup_boot_df, target_pos, 6)
#Get boot CIs:
prop_bootci_lower <- gen_boot_propci(lineuprops, perc = .025)
prop_bootci_upper <- gen_boot_propci(lineuprops, perc = .975)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.