Convert means and standard deviations of two independent groups obtained from an ANCOVA model into several effect size measures
es_from_ancova_means_sd( n_exp, n_nexp, ancova_mean_exp, ancova_mean_nexp, ancova_mean_sd_exp, ancova_mean_sd_nexp, cov_outcome_r, n_cov_ancova, smd_to_cor = "viechtbauer", reverse_ancova_means )
n_exp
: number of participants in the experimental/exposed group.n_nexp
: number of participants in the non-experimental/non-exposed group.ancova_mean_exp
: adjusted mean of participants in the experimental/exposed group.ancova_mean_nexp
: adjusted mean of participants in the non-experimental/non-exposed group.ancova_mean_sd_exp
: adjusted standard deviation of participants in the experimental/exposed group.ancova_mean_sd_nexp
: adjusted standard deviation of participants in the non-experimental/non-exposed group.cov_outcome_r
: correlation between the outcome and covariate(s) (multiple correlation when multiple covariates are included in the ANCOVA model).n_cov_ancova
: number of covariates in the ANCOVA model.smd_to_cor
: formula used to convert the adjusted cohen_d
value into a coefficient correlation (see details).reverse_ancova_means
: a logical value indicating whether the direction of the generated effect sizes should be flipped.This function estimates and converts between several effect size measures.
natural effect size measure | MD + D + G |
converted effect size measure | OR + R + Z |
required input data | See 'Section 19. Adjusted: Means and dispersion' |
https://metaconvert.org/input.html |
This function first computes an "adjusted" mean difference (MD), Cohen's d (D) and Hedges' g (G) from the adjusted means and standard deviations. Odds ratio (OR) and correlation coefficients (R/Z) are then converted from the Cohen's d.
This function start by estimating the non-adjusted standard deviation of the two groups (formula 12.24 in Cooper);
To obtain the mean difference , the following formulas are used (authors calculations):
To obtain the Cohen's d , the following formulas are used (table 12.3 in Cooper):
To estimate other effect size measures , Calculations of the es_from_cohen_d_adj()
are applied.
es_from_ancova_means_sd( n_exp = 55, n_nexp = 55, ancova_mean_exp = 2.3, ancova_mean_sd_exp = 1.2, ancova_mean_nexp = 1.9, ancova_mean_sd_nexp = 0.9, cov_outcome_r = 0.2, n_cov_ancova = 3 )
Cooper, H., Hedges, L.V., & Valentine, J.C. (Eds.). (2019). The handbook of research synthesis and meta-analysis. Russell Sage Foundation.
Useful links