In both theoretical and applied research, it is often of interest to assess the strength of an observed association. This is typically done to allow the judgment of the magnitude of an effect [especially when units of measurement are not meaningful, e.g., in the use of estimated latent variables; Bollen (1989)], to facilitate comparing between predictors’ importance within a given model, or both. Though some indices of effect size, such as the correlation coefficient (itself a standardized covariance coefficient) are readily available, other measures are often harder to obtain. effectsize is an R package (R Core Team 2020) that fills this important gap, providing utilities for easily estimating a wide variety of standardized effect sizes (i.e., effect sizes that are not tied to the units of measurement of the variables of interest) and their confidence intervals (CIs), from a variety of statistical models. effectsize provides easy-to-use functions, with full documentation and explanation of the various effect sizes offered, and is also used by developers of other R packages as the back-end for effect size computation, such as parameters (Lüdecke et al. 2020), ggstatsplot (Patil 2018), gtsummary (Sjoberg et al. 2020) and more.
effectsize’s functionality is in part comparable to packages like lm.beta (Behrendt 2014), MOTE (Buchanan et al. 2019), and MBESS (K. Kelley 2020). Yet, there are some notable differences, e.g.:
effectsize provides various functions for extracting and estimating effect sizes and their confidence intervals [estimated using the noncentrality parameter method; Steiger (2004)]. In this article, we provide basic usage examples for estimating some of the most common effect size. A comprehensive overview, including in-depth examples and a full list of features and functions, are accessible via a dedicated website (https://easystats.github.io/effectsize/).
effectsize provides functions for estimating the
common indices of standardized differences such as Cohen’s d
(cohens_d()
), Hedges’ g (hedges_g()
)
for both paired and independent samples (Cohen
1988; Hedges and Olkin 1985), and Glass’ \(\Delta\) (glass_delta()
) for
independent samples with different variances (Hedges and Olkin 1985).
library(effectsize)
cohens_d(mpg ~ am, data = mtcars)
#> Cohen's d | 95% CI
#> --------------------------
#> -1.48 | [-2.27, -0.67]
#>
#> - Estimated using pooled SD.
Pearson’s \(\phi\)
(phi()
) and Cramér’s V (cramers_v()
)
can be used to estimate the strength of association between two
categorical variables (Cramér 1946), while
Cohen’s g (cohens_g()
) estimates the deviance
between paired categorical variables (Cohen
1988).
<- rbind(
M c(150, 130, 35, 55),
c(100, 50, 10, 40),
c(165, 65, 2, 25)
)
cramers_v(M)
#> Cramer's V | 95% CI
#> -------------------------
#> 0.18 | [0.13, 1.00]
#>
#> - One-sided CIs: upper bound fixed at [1.00].
Unlike standardized parameters, the effect sizes reported in the
context of ANOVAs (analysis of variance) or ANOVA-like tables represent
the amount of variance explained by each of the model’s terms, where
each term can be represented by one or more parameters.
eta_squared()
can produce such popular effect sizes as
Eta-squared (\(\eta^2\)), its partial
version (\(\eta^2_p\)), as well as the
generalized \(\eta^2_G\) (Cohen 1988; Olejnik and Algina 2003):
options(contrasts = c("contr.sum", "contr.poly"))
data("ChickWeight")
# keep only complete cases and convert `Time` to a factor
<- subset(ChickWeight, ave(weight, Chick, FUN = length) == 12)
ChickWeight $Time <- factor(ChickWeight$Time)
ChickWeight
<- aov(weight ~ Diet * Time + Error(Chick / Time),
model data = ChickWeight
)
eta_squared(model, partial = TRUE)
#> # Effect Size for ANOVA (Type I)
#>
#> Group | Parameter | Eta2 (partial) | 95% CI
#> ------------------------------------------------------
#> Chick | Diet | 0.27 | [0.06, 1.00]
#> Chick:Time | Time | 0.87 | [0.85, 1.00]
#> Chick:Time | Diet:Time | 0.22 | [0.11, 1.00]
#>
#> - One-sided CIs: upper bound fixed at [1.00].
eta_squared(model, generalized = "Time")
#> # Effect Size for ANOVA (Type I)
#>
#> Group | Parameter | Eta2 (generalized) | 95% CI
#> ----------------------------------------------------------
#> Chick | Diet | 0.04 | [0.00, 1.00]
#> Chick:Time | Time | 0.74 | [0.71, 1.00]
#> Chick:Time | Diet:Time | 0.03 | [0.00, 1.00]
#>
#> - Observed variables: Time
#> - One-sided CIs: upper bound fixed at [1.00].
effectsize also offers \(\epsilon^2_p\)
(epsilon_squared()
) and \(\omega^2_p\)
(omega_squared()
), which are less biased estimates of the
variance explained in the population (T. L.
Kelley 1935; Olejnik and Algina 2003). For more details about the
various effect size measures and their applications, see the Effect
sizes for ANOVAs vignette.
In many real world applications there are no straightforward ways of obtaining standardized effect sizes. However, it is possible to get approximations of most of the effect size indices (d, r, \(\eta^2_p\)…) with the use of test statistics (Friedman 1982). These conversions are based on the idea that test statistics are a function of effect size and sample size (or more often of degrees of freedom). Thus it is possible to reverse-engineer indices of effect size from test statistics (F, t, \(\chi^2\), and z).
F_to_eta2(
f = c(40.72, 33.77),
df = c(2, 1), df_error = c(18, 9)
)#> Eta2 (partial) | 95% CI
#> -----------------------------
#> 0.82 | [0.66, 1.00]
#> 0.79 | [0.49, 1.00]
#>
#> - One-sided CIs: upper bound fixed at [1.00].
t_to_d(t = -5.14, df_error = 22)
#> d | 95% CI
#> ----------------------
#> -2.19 | [-3.23, -1.12]
t_to_r(t = -5.14, df_error = 22)
#> r | 95% CI
#> ----------------------
#> -0.74 | [-0.85, -0.49]
These functions also power the effectsize()
convenience
function for estimating effect sizes from R’s htest
-type
objects. For example:
data(hardlyworking, package = "effectsize")
<- oneway.test(salary ~ n_comps,
aov1 data = hardlyworking, var.equal = TRUE
)effectsize(aov1)
#> Eta2 | 95% CI
#> -------------------
#> 0.20 | [0.14, 1.00]
#>
#> - One-sided CIs: upper bound fixed at [1.00].
<- rbind(c(762, 327, 468), c(484, 239, 477), c(484, 239, 477))
xtab <- chisq.test(xtab)
Xsq effectsize(Xsq)
#> Cramer's V | 95% CI
#> -------------------------
#> 0.07 | [0.05, 1.00]
#>
#> - One-sided CIs: upper bound fixed at [1.00].
These functions also power our Effect Sizes From Test Statistics shiny app (https://easystats4u.shinyapps.io/statistic2effectsize/).
For comparisons between different types of designs and analyses, it is useful to be able to convert between different types of effect sizes [d, r, Odds ratios and Risk ratios; Borenstein et al. (2009); Grant (2014)].
r_to_d(0.7)
#> [1] 1.96
d_to_oddsratio(1.96)
#> [1] 35
oddsratio_to_riskratio(34.99, p0 = 0.4)
#> [1] 2.4
oddsratio_to_r(34.99)
#> [1] 0.7
Finally, effectsize provides convenience functions to apply existing or custom interpretation rules of thumb, such as for instance Cohen’s (1988). Although we strongly advocate for the cautious and parsimonious use of such judgment-replacing tools, we provide these functions to allow users and developers to explore and hopefully gain a deeper understanding of the relationship between data values and their interpretation. More information is available in the Automated Interpretation of Indices of Effect Size vignette.
interpret_cohens_d(c(0.02, 0.52, 0.86), rules = "cohen1988")
#> [1] "very small" "medium" "large"
#> (Rules: cohen1988)
effectsize is licensed under the GNU General Public License (v3.0), with all source code stored at GitHub (https://github.com/easystats/effectsize), and with a corresponding issue tracker for bug reporting and feature enhancements. In the spirit of honest and open science, we encourage requests/tips for fixes, feature updates, as well as general questions and concerns via direct interaction with contributors and developers, by filing an issue. See the package’s Contribution Guidelines.
effectsize is part of the easystats ecosystem, a collaborative project created to facilitate the usage of R for statistical analyses. Thus, we would like to thank the members of easystats as well as the users.