
Compute summaries from alternative estimation replications
compute_alt_stats.RdCompute summaries from alternative estimation replications
Usage
compute_alt_stats(object, type = "bootstrap", quantiles = c(0.025, 0.5, 0.975))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")
} # }