Function to convert a meta-analysis of correlations to a meta-analysis of d values or vice-versa (does one table)
.convert_metatab(
ma_table,
p_vec = rep(0.5, nrow(ma_table)),
conf_level = 0.95,
cred_level = 0.8,
conf_method = "t",
cred_method = "t"
)
Meta-analysis table converted to a new metric
Meta-analysis table.
Vector of proportions associated with the rows of ma_table
.
Confidence level to define the width of the confidence interval (default = .95).
Credibility level to define the width of the credibility interval (default = .80).
Distribution to be used to compute the width of confidence intervals. Available options are "t" for t distribution or "norm" for normal distribution.
Distribution to be used to compute the width of credibility intervals. Available options are "t" for t distribution or "norm" for normal distribution.