powered by
Function to construct a credibility interval around a mean effect size.
credibility(mean, sd, k = NULL, cred_level = 0.8, cred_method = c("t", "norm"))
Mean effect size.
Residual/true standard deviation of effect sizes, after accounting for variance from artifacts.
Number of studies in the meta-analysis.
Credibility level that defines the width of the credibility interval (default = .80).
Distribution to be used to compute the width of credibility intervals. Available options are "t" for t distribution or "norm" for normal distribution.
A matrix of credibility intervals of the specified width.
$$CV=mean_{es}\pm quantile\times SD_{es}$$
# NOT RUN { credibility(mean = .3, sd = .15, cred_level = .8) credibility(mean = .3, sd = .15, cred_level = .8, k = 10) credibility(mean = c(.3, .5), sd = c(.15, .2), cred_level = .8, k = 10) # }
Run the code above in your browser using DataLab