Skip to contents

Compute summaries from alternative estimation replications

Usage

compute_alt_stats(object, type = "bootstrap", quantiles = c(0.025, 0.5, 0.975))

Arguments

object

A list of fitted replication models from bootstrap, jackknife, or permutation.

type

Type of alternative estimation summary to compute.

quantiles

Quantiles for bootstrap/permutation summaries.

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"
)
compute_alt_stats(boot_reps, type = "bootstrap")
} # }