metaConvert-package

metaConvert: An R Package Dedicated to Automated Effect Size Calculations

metaConvert: An R Package Dedicated to Automated Effect Size Calculations

The metaConvert package automatically estimates 11 effect size measures from a well-formatted dataframe. Various other functions can help, for example, removing dependency between several effect sizes, or identifying differences between two dataframes. This package is mainly designed to assist in conducting a systematic review with a meta-analysis, but it can be useful to any researcher interested in estimating an effect size. package

Overview of the package

To visualize all the types of input data that can be used to estimate the 11 effect size measures available in metaConvert, you can use the see_input_data() function.

Estimate effect sizes

To automatically estimate effect sizes directly from a dataset, you can use the convert_df() function.

Aggregate dependent effect sizes

To automatically aggregate dependent effect sizes using Borenstein's formulas, you can use the aggregate_df() function. This function can handle dependent effect sizes from multiple subgroups, or dependent effect sizes from the same participants.

Flag differences between two datasets

If pairs of data extractors have generated similar datasets that should be compared, you can use the compare_df() function.

Prepare a dataset extraction sheet

If you have not started data extraction yet, you can use the data_extraction_sheet() function to obtain a perfectly formatted data extraction sheet.

Well-formatted dataset

One of the specificities of the metaConvert package is that its core function (convert_df) does not have arguments to specify the names of the variables contained in the dataset. While this allow using a convenient automatic process in the calculations, this requires that the datasets passed to this function respect a very precise formatting (which we will refer to as well-formatted dataset).

Rather than a long description of all column names, we built several tools that help you find required information.

  1. You can use the data_extraction_sheet() function that generates an excel/csv/txt file containing all the column names available, as well as a description of the information it should contain.
  2. You can use the see_input_data() function that generates a list of all available types of input data as well as their estimated/converted effect size measures. This function also points out to the corresponding helper tables available in https://metaconvert.org

Effect size measures available

Eleven effect size measures are accepted:

  • "d" : standardized mean difference (i.e., Cohen's d)
  • "g" : Hedges' g
  • "md" : mean difference
  • "r" : Correlation coefficient
  • "z" : Fisher's r-to-z correlation
  • "or" or "logor" : odds ratio or its logarithm
  • "rr" or "logrr" : risk ratio or its logarithm
  • "irr" or "logirr" : incidence rate ratio or its logarithm
  • "nnt" : number needed to treat
  • "logcvr" : log coefficient of variation
  • "logvr" : log variability ratio

Output

All the functions of the metaConvert package that are dedicated to effect size calculations (i.e., all the functions named es_from_*) return a dataframe that contain, depending on the function - some of the following columns:

info_usedinput data used to generate the effect size.
mdvalue of the mean difference.
md_sestandard error of the mean difference.
md_ci_lolower bound of the 95% CI of the mean difference.
md_ci_upupper bound of the 95% CI of the mean difference.
dvalue of the Cohen's d.
d_sestandard error of the Cohen's d.
d_ci_lolower bound of the 95% CI of the Cohen's d.
d_ci_upupper bound of the 95% CI of the Cohen's d.
gvalue of the Hedges' g.
g_sestandard error of the Hedges' g.
g_ci_lolower bound of the 95% CI of the Hedges' g.
g_ci_upupper bound of the 95% CI of the Hedges' g.
rvalue of the correlation coefficient.
r_sestandard error of the correlation coefficient.
r_ci_lolower bound of the 95% CI of the correlation coefficient.
r_ci_upupper bound of the 95% CI of the correlation coefficient.
zvalue of the r-to-z transformed correlation coefficient.
z_sestandard error of the r-to-z transformed correlation coefficient.
z_ci_lolower bound of the 95% CI of the r-to-z transformed correlation coefficient.
z_ci_upupper bound of the 95% CI of the r-to-z transformed correlation coefficient.
logorvalue of the log odds ratio.
logor_sestandard error of the log odds ratio.
logor_ci_lolower bound of the 95% CI of the log odds ratio.
logor_ci_upupper bound of the 95% CI of the log odds ratio.
logrrvalue of the log risk ratio.
logrr_sestandard error of the log risk ratio.
logrr_ci_lolower bound of the 95% CI of the log risk ratio.
logrr_ci_upupper bound of the 95% CI of the log risk ratio.
logirrvalue of the log incidence rate ratio.
logirr_sestandard error of the log incidence rate ratio.
logirr_ci_lolower bound of the 95% CI of the log incidence rate ratio.
logirr_ci_upupper bound of the 95% CI of the log incidence rate ratio.
logvrvalue of the log variability ratio.
logvr_sestandard error of the log variability ratio.
logvr_ci_lolower bound of the 95% CI of the log variability ratio.
logvr_ci_upupper bound of the 95% CI of the log variability ratio.
logcvrvalue of the log coefficient of variation.
logcvr_sestandard error of the log coefficient of variation.
logcvr_ci_lolower bound of the 95% CI of the log coefficient of variation.
logcvr_ci_upupper bound of the 95% CI of the log coefficient of variation.
nntnumber needed to treat.
  • Maintainer: Corentin J. Gosling
  • License: GPL (>= 3)
  • Last published: 2024-11-17

Useful links