Skip to main content
Stats for Scholars
Concepts Decision Tree Reporting Calculators Blog Software Cheat Sheets
Concepts Decision Tree Reporting Calculators Blog Software Cheat Sheets
Home Concepts Effect Size

Descriptive Statistics

  • Descriptive Statistics

Inferential Statistics

  • Chi-Square Test of Independence
  • Independent Samples t-Test
  • One-Way ANOVA
  • Paired Samples t-Test
  • Pearson Correlation
  • Simple Linear Regression

Effect Size & Power

  • Effect Size
  • Sample Size Determination
  • Statistical Power & Power Analysis

Reliability & Validity

  • Cronbach's Alpha
  • Inter-Rater Reliability

Effect Size

beginner Effect Size & Power

Effect Size

Purpose
Quantifies the magnitude of a difference or relationship — tells you how big the effect actually is, not just whether it exists.
When to Use
Always report effect size alongside your p-value. Required by APA 7th edition for all statistical tests.
Data Type
Continuous (interval or ratio) for most measures; categorical for odds ratios
Key Assumptions
Varies by measure. Cohen's d assumes approximately normal distributions. Hedges' g corrects for small sample bias.
Tools
Effect Size Calculator on Subthesis →

What Is Effect Size?

Effect size measures how large an effect is — not just whether it's statistically significant. While a p-value tells you if a result is unlikely due to chance, effect size tells you if the result matters in practice.

Think of it this way: with a large enough sample, even a trivially small difference becomes statistically significant. Effect size cuts through the noise and answers the question every researcher actually cares about: "How big is the effect?"

Statistical significance tells you something happened. Effect size tells you whether anyone should care.

Why Effect Size Matters

  1. APA requires it. The APA Publication Manual (7th ed.) requires effect sizes for all primary outcomes.
  2. p-values are not enough. A p-value of .001 doesn't mean the effect is large — it means it's unlikely due to chance alone.
  3. Comparability. Effect sizes let you compare results across different studies, different measures, and different sample sizes.
  4. Power analysis. You need an expected effect size to calculate the sample size required for your study.

Common Effect Size Measures

Cohen's d

The most widely used effect size for comparing two group means. It expresses the difference between groups in standard deviation units.

d=Xˉ1−Xˉ2spd = \frac{\bar{X}_1 - \bar{X}_2}{s_p} d=sp​Xˉ1​−Xˉ2​​

Where Xˉ1\bar{X}_1Xˉ1​ and Xˉ2\bar{X}_2Xˉ2​ are the group means, and sps_psp​ is the pooled standard deviation.

Interpretation benchmarks (Cohen, 1988):

Cohen's d Interpretation
0.2 Small
0.5 Medium
0.8 Large

Hedges' g

Similar to Cohen's d but includes a correction for small sample bias. Preferred when either group has fewer than 20 participants.

g=d×(1−34(n1+n2)−9)g = d \times \left(1 - \frac{3}{4(n_1 + n_2) - 9}\right) g=d×(1−4(n1​+n2​)−93​)

Eta-squared (η2\eta^2η2)

Used with ANOVA to describe the proportion of variance in the dependent variable explained by the independent variable.

η2=SSbetweenSStotal\eta^2 = \frac{SS_{between}}{SS_{total}} η2=SStotal​SSbetween​​

η2\eta^2η2 Interpretation
0.01 Small
0.06 Medium
0.14 Large

Worked Example

Scenario: A researcher compares test scores between two teaching methods. Group A (lecture, n=30n = 30n=30) scored M=78,SD=10M = 78, SD = 10M=78,SD=10. Group B (active learning, n=32n = 32n=32) scored M=85,SD=12M = 85, SD = 12M=85,SD=12.

Step 1: Calculate the pooled standard deviation.

sp=(n1−1)s12+(n2−1)s22n1+n2−2=(29)(100)+(31)(144)60=2900+446460=122.73=11.08s_p = \sqrt{\frac{(n_1 - 1)s_1^2 + (n_2 - 1)s_2^2}{n_1 + n_2 - 2}} = \sqrt{\frac{(29)(100) + (31)(144)}{60}} = \sqrt{\frac{2900 + 4464}{60}} = \sqrt{122.73} = 11.08 sp​=n1​+n2​−2(n1​−1)s12​+(n2​−1)s22​​​=60(29)(100)+(31)(144)​​=602900+4464​​=122.73​=11.08

Step 2: Calculate Cohen's d.

d=85−7811.08=711.08=0.63d = \frac{85 - 78}{11.08} = \frac{7}{11.08} = 0.63 d=11.0885−78​=11.087​=0.63

Interpretation: The effect size is d=0.63d = 0.63d=0.63, which falls between Cohen's benchmarks for a medium (0.5) and large (0.8) effect. Students in the active learning group scored about two-thirds of a standard deviation higher than the lecture group — a meaningful, practically significant difference.

How to Report Effect Size in APA Format

For a t-test with Cohen's d:

An independent samples t-test revealed that students in the active learning condition (MMM = 85, SDSDSD = 12) scored significantly higher than those in the lecture condition (MMM = 78, SDSDSD = 10), ttt(60) = 2.54, ppp = .014, ddd = 0.63.

Common Mistakes

  1. Reporting only p-values. A significant p-value without effect size is incomplete.
  2. Using Cohen's benchmarks rigidly. Small/medium/large are rough guides. In some fields, d=0.3d = 0.3d=0.3 is meaningful; in others, d=0.8d = 0.8d=0.8 is unremarkable. Consider your field's norms.
  3. Forgetting Hedges' g for small samples. Cohen's d overestimates the effect in small samples (n<20n < 20n<20 per group).
  4. Confusing η2\eta^2η2 with partial η2\eta^2η2. SPSS reports partial η2\eta^2η2 by default, which is always larger than η2\eta^2η2. Know which one you're reporting.

When to Use Each Measure

Measure Best For Statistical Test
Cohen's d Two-group mean comparisons t-tests
Hedges' g Small sample two-group comparisons t-tests (n<20n < 20n<20)
η2\eta^2η2 / partial η2\eta^2η2 Multi-group comparisons ANOVA
rrr Correlation strength Correlation
R2R^2R2 Variance explained Regression
Odds ratio Categorical outcomes Chi-square, logistic regression
Cramer's V Categorical associations Chi-square

Ready to calculate?

Now that you understand the concept, use the free Effect Size Calculator on Subthesis to run your own analysis.

Calculate Your Effect Size on Subthesis

Related Concepts

Statistical Power & Power Analysis

Learn what statistical power is, why 80% is the standard threshold, and how to conduct a power analysis to determine if your study can detect real effects.

Sample Size Determination

Learn how to calculate the right sample size for your research study using power analysis, effect size estimates, and practical planning considerations.

Independent Samples t-Test

Learn how to conduct and interpret an independent samples t-test, including assumptions, formulas, worked examples, and APA reporting guidelines.

Stats for Scholars

Statistics for Researchers, Not Statisticians

A Subthesis Resource

Learn

  • Statistical Concepts
  • Choose a Test
  • APA Reporting
  • Blog

Resources

  • Calculators
  • Cheat Sheets
  • About
  • FAQ
  • Privacy
  • Terms

© 2026 Angel Reyes / Subthesis. All rights reserved.

Privacy Policy Terms of Use