Skip to contents

Replicate the bootstrap computations

Usage

replicate_bootstrap(number_bootstraps = 100, future_seed = TRUE, ...)

Arguments

number_bootstraps

The number of bootstraps to perform, default is 100.

future_seed

Seed control forwarded to future.apply::future_lapply(future.seed = ...).

...

Additional function arguments to pass to the bootstrap_mars() function.

Examples

if (FALSE) { # \dontrun{
boot_reps <- replicate_bootstrap(
  number_bootstraps = 5,
  data = teacher_expectancy,
  studyID = "study",
  effectID = NULL,
  sample_size = NULL,
  formula = yi ~ 1,
  variance = "vi",
  varcov_type = "univariate",
  structure = "univariate"
)
} # }