Skip to contents

Analyzes and displays bootstrap standard error results for identified sets.

Usage

analyze_bootstrap_results(results_main, bootstrap_demo, config, verbose = TRUE)

Arguments

results_main

Data.frame. Main simulation results.

bootstrap_demo

Data.frame. Bootstrap demonstration results.

config

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

verbose

Logical. Whether to print progress messages (default: TRUE).

Value

A data.frame with bootstrap examples.

Note

For enhanced table formatting in verbose output, install the knitr package.

Examples

if (FALSE) { # \dontrun{
config <- create_default_config()
seeds <- generate_all_seeds(config)
results_main <- run_main_simulation(config, seeds)
bootstrap_demo <- run_bootstrap_demonstration(config, seeds)
bootstrap_analysis <- analyze_bootstrap_results(
  results_main, bootstrap_demo, config
)
} # }