The minter package provides tools for calculating
effect sizes used in meta-analyses, focusing on factorial designs and
repeated measures designs. This documentation explains each function,
its parameters, and provides examples.
The minter package implements two primary types of
effect size calculations:
-
Factorial design effect sizes: For experimental
designs with two factors (2×2 designs). There are three types of effect
sizes that can be calculated in this designs:
- Individual/simple effects (comparing single treatments)
- Main effects (average effect of a factor across levels of another
factor)
- Interaction effects (how the effect of one factor depends on the
level of another)
-
Repeated measures effect sizes: For time-based or
before-after treatments.
Quick Navigation
Factorial Design Effect Sizes
- Standardized Mean Difference (SMD)
- Log of the Response Ratio (lnRR)
- Log of the Variation Ratio (lnVR)
- Log of the Coefficient of Variation Ratio (lnCVR)
Repeated Measures Effect Sizes
Factorial Design Effect Sizes
These functions compute effect sizes for standard 2×2 factorial
designs where two factors (A and B) are manipulated.
Effect sizes for factorial meta-analysis appeared for the first time
in Gurevitch et al. 2000. In this paper, the authors presented the idea
of estimating effect sizes for factorial experiments analogous to the
estimation of main and interaction effects in ANOVA. They done this for
the Standardized Mean Difference, and the approach was later expanded
for other kind of effect sizes.
Recently, Shinichi Nakagawa and Daniel Noble derived different
families of effect sizes for factorial experiments, like lnVR or lnCVR,
and kindly shared those formulas.
SMD - Standardized Mean Difference
SMD_ind()
This function computes the individual or simple effect of Factor A
over the Control treatment.
It is the classic Standardized Mean Difference (SMD), which can also
be computed with metafor’s escalc()
function using
measure = "SMD"
.
The individual Standardized Mean Difference of Factor A is calculated
as:
where:
The
is a correction for small-sample bias introduced by Hedges
(REF). This is used by default in minter
,
but can be turned off with hedges_correction = FALSE
.
This factor is computed as:
with
And the sampling variance is:
SMD_main()
To compute the main effect of Factor A:
The correction for small-sample bias
is the same shown above, but the degrees of freedom are now:
In this case
is the pooled standard deviation for all four groups:
Where the sampling variance is:
SMD_inter()
For interaction effects:
where
is the pooled standard deviation for all four groups, calculated using
the same formula than SMD_main().
And the sampling variance is:
References
- Gurevitch, J., Morrison, J. A., & Hedges, L. V. (2000). The
interaction between competition and predation: a meta-analysis of field
experiments. The American Naturalist, 155(4), 435-453.
- Morris, W. F., et al. (2007). Direct and interactive effects of
enemies and mutualists on plant performance: a meta‐analysis.
Ecology, 88(4), 1021-1029.
lnRR - Log Response Ratio
lnRR_ind()
For individual effects:
with variance
lnRR_main()
For main effects:
with variance
lnRR_inter()
For interaction effects:
with variance
lnVR - Log of Variability Ratio
lnVR_ind()
lnVR_main()
lnVR_inter()
lnCVR - Log of Coefficient of Variation Ratio
In all this formulas, the CV is:
lnCVR_ind()
lnCVR_main()
lnCVR_inter()