Skip to contents

Replicate the jackknife computations

Usage

replicate_jackknife(
  data,
  structure = "UN",
  formula = NULL,
  future_seed = TRUE,
  ...
)

Arguments

data

Data used for analysis.

structure

Between studies covariance structure.

formula

The formula used for specifying the fixed and random structure.

future_seed

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

...

Additional function arguments passed to sample_jackknife().

Examples

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