Skip to contents

Replicate the permutation computations

Usage

replicate_permutation(number_permutations = 100, future_seed = TRUE, ...)

Arguments

number_permutations

The number of permutations to perform, default is 100.

future_seed

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

...

Additional function arguments passed to the permutation_mars() function.

Examples

# \donttest{
perm_reps <- replicate_permutation(
  number_permutations = 5,
  data = teacher_expectancy,
  studyID = "study",
  effectID = NULL,
  sample_size = NULL,
  formula = yi ~ 1,
  variance = "vi",
  varcov_type = "univariate",
  structure = "univariate"
)
# }