Conduct permutation computations
Usage
conduct_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 each permutation replication.
Examples
# \donttest{
perm_reps <- conduct_permutation(
number_permutations = 5,
data = teacher_expectancy,
studyID = "study",
effectID = NULL,
sample_size = NULL,
formula = yi ~ 1,
variance = "vi",
varcov_type = "univariate",
structure = "univariate"
)
# }