Compute the standardized mean difference between two independent groups using raw data or summary statistics.Includes Cohen's benchmarks, confidence intervals (based on t-distribution), and a visual overlap plot.Now with CSV upload, calculation steps, and improved X-axis scaling.
Cohen's d is one of the most widely used measures of effect size in the behavioral, social, and biomedical sciences. It quantifies the standardized difference between two group means, expressed in units of the pooled standard deviation. Unlike p-values, which depend on sample size, Cohen's d directly measures the practical significance of a finding — answering the question: "How large is the difference, in real-world terms?"
d = (M₁ − M₂) / spooled
where spooled = √[ ((n₁−1)·s₁² + (n₂−1)·s₂²) / (n₁ + n₂ − 2) ]
The concept was popularized by the American statistician Jacob Cohen in his seminal 1969 book "Statistical Power Analysis for the Behavioral Sciences". Cohen proposed conventional benchmarks to guide interpretation: d = 0.20 (small effect), d = 0.50 (medium), and d = 0.80 (large). These thresholds, while heuristic, have become the de facto standard across thousands of published studies. However, Cohen himself cautioned that these are context-dependent — what counts as "large" in psychology might be "medium" in medicine or education, depending on the measurement precision and practical consequences.
In modern meta-analysis, Cohen's d is the foundational metric for synthesizing results across studies. It enables researchers to combine findings from different scales, instruments, and populations. Corrections such as Hedges' g (which adjusts for small-sample bias) and Glass's Δ (which uses only the control group's SD) are often reported alongside d to enhance robustness.
The calculator supports two modes of input: raw data and summary statistics. In raw data mode, the tool automatically computes means, standard deviations, and sample sizes from your entries. Missing values are safely ignored, and the algorithm handles unequal group sizes gracefully.
The primary formula for Cohen's d uses the pooled standard deviation:
d = (M₁ − M₂) / √[ ((n₁−1)·s₁² + (n₂−1)·s₂²) / (n₁ + n₂ − 2) ]
Hedges' g applies a correction factor to remove small-sample bias:
g = d · ( 1 − 3 / (4·(n₁ + n₂) − 9) )
Glass's Δ uses only the standard deviation of the control (or reference) group, which is preferred when the treatment group has a much larger variance or when the control SD is considered more stable:
Δ = (M₁ − M₂) / s₁ (where s₁ is the SD of the control group)
The 95% confidence interval for Cohen's d is computed using the non-central t-distribution approach (approximated via the standard error of d), providing a range of plausible population effect sizes. This interval is essential for assessing the precision of your estimate.
The overlap statistic (U₃) represents the percentage of the second group's distribution that exceeds the mean of the first group. For d = 0.8, U₃ ≈ 79%, meaning about 79% of the treatment group outperforms the average control participant — a compelling visualization of practical significance.
| Cohen's d | Effect Size | Overlap (U₃) | Percentile Equivalent | Typical Context |
|---|---|---|---|---|
| 0.00 – 0.19 | Negligible | < 58% | — | Trivial difference; likely not meaningful. |
| 0.20 – 0.49 | Small | 58% – 69% | 58th – 69th | Detectable but modest; common in personality & social psychology. |
| 0.50 – 0.79 | Medium | 69% – 79% | 69th – 79th | Moderate difference; typical in educational interventions, clinical trials. |
| 0.80 – 1.19 | Large | 79% – 88% | 79th – 88th | Substantial effect; often seen in medical treatments, strong interventions. |
| ≥ 1.20 | Very Large | > 88% | > 88th | Exceptional difference; rare in real-world settings. |
A research team investigates whether a 12-week working memory training program improves fluid intelligence scores compared to an active control group. Pre-registered analysis yields:
Using our calculator, Cohen's d = 0.72 (medium-to-large), 95% CI [0.22, 1.21]. The U₃ overlap is 76%, indicating that the average participant in the treatment group outperformed 76% of the control group. The team concludes that the intervention has a practically meaningful effect on cognitive performance, supporting the deployment of similar programs in educational settings. This result also informs a power analysis for a larger multi-site replication study.