🎉 75% of content is free forever — Unlock Premium from $10/mo →
CW
Search courses…
💼 Servicesℹ️ About✉️ ContactView Pricing Plansfrom $10

Effect Size — Cohen's d, r, η², ω² and When They Matter

Hypothesis TestingCore Concepts🟢 Free Lesson

Advertisement

Effect Size

Hypothesis Testing

How Big Is the Real Effect?

Effect size measures the magnitude of an effect independent of sample size, answering the practical significance question that p-values cannot. It transforms statistical significance into meaningful conclusions.

  • Meta-Analysis — Combining results across studies using standardized effect measures
  • Education Research — Evaluating whether interventions produce practically important gains
  • Business Decisions — Assessing whether improvements justify implementation costs

Statistical significance tells you if an effect exists; effect size tells you if it matters.



Cohen's d (Mean Difference)


Python Implementation


Overlap Visualization

# Overlap visualization
fig, ax = plt.subplots(figsize=(10, 5))
x = np.linspace(40, 120, 500)
ax.plot(x, stats.norm.pdf(x, group_a.mean(), group_a.std()), 'b-', linewidth=2, label=f'Group A (μ={group_a.mean():.1f})')
ax.plot(x, stats.norm.pdf(x, group_b.mean(), group_b.std()), 'r-', linewidth=2, label=f'Group B (μ={group_b.mean():.1f})')
ax.fill_between(x, stats.norm.pdf(x, group_a.mean(), group_a.std()), alpha=0.3, color='blue')
ax.fill_between(x, stats.norm.pdf(x, group_b.mean(), group_b.std()), alpha=0.3, color='red')
ax.set_title(f"Cohen's d = {d:.3f} (medium effect)\nOverlap illustrates practical difference")
ax.legend()
plt.tight_layout()
plt.savefig('effect_size_overlap.png', dpi=150)
plt.show()

Other Effect Size Measures


Effect Size Reference Table

MeasureSmallMediumLargeUsed For
Cohen's d0.20.50.8Mean differences (t-test)
Pearson r0.10.30.5Correlations
0.010.090.25Regression
η²0.010.060.14ANOVA
Cramér's V0.10.30.5Chi-square
Cohen's f0.10.250.40ANOVA (alternative)

Key Takeaways

Need Expert Statistics Help?

Get personalized tutoring, project support, or professional consulting.

Advertisement