Skip to contents

Runs a separate demonstration of bootstrap standard errors for set identification bounds.

Usage

run_bootstrap_demonstration(config, seeds, verbose = TRUE)

Arguments

config

List. Configuration object created by create_default_config or related configuration functions.

seeds

List. Seeds for reproducibility, typically generated by generate_all_seeds.

verbose

Logical. Whether to show progress information during execution (default: TRUE).

Value

A data.frame containing bootstrap demonstration results.

Examples

if (FALSE) { # \dontrun{
config <- create_default_config()
seeds <- generate_all_seeds(config)
bootstrap_results <- run_bootstrap_demonstration(config, seeds)
} # }