Learn R Programming

r4lineups (version 0.1.1)

gen_boot_propci: Percentile of Bootstrapped Lineup Proportion

Description

Function for computing arbitrary percentile of bootstrapped lineup proportion

Usage

gen_boot_propci(lineuprops, perc = 0.05)

Arguments

lineuprops

A vector of bootstrapped lineup proportions

perc

Percentile to be computed. Must be declared by user (scalar)

Defaults to .05

Value

Arbitrary percentile of bootstrapped lineup proportion

Details

Can be used to calculate confidence intervals at desired level of alpha

Examples

Run this code
# NOT RUN {
#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)

# }

Run the code above in your browser using DataLab