Effect Sizes: How to Measure and Report the Size of a Result
An effect size is a number that answers the question a p-value can't: not whether a result exists, but how big it is. Two studies can both report significance at p < .001 and mean completely different things. One found a difference that changes clinical practice. The other found one too small to notice. The effect size is what separates them, and it's why journals across psychology, medicine, education, and economics now expect one alongside every significance test.
This guide covers why significance alone is not enough and how the two families of effect sizes differ. It then walks through calculating Cohen's d by hand and matching the right measure to your analysis. The last two sections cover the small-medium-large benchmarks and how to report the result.
What it is. A standardized number describing the magnitude of a difference or the strength of an association, independent of sample size.
Why it matters. A p-value depends heavily on sample size, so a trivial effect can be highly significant in a large sample. The effect size is what tells a reader whether the finding matters.
The two families. Difference-based measures such as Cohen's d express a gap in standard deviation units. Association-based measures such as r and eta-squared express strength or shared variance.
The benchmarks. Cohen's conventions (d of 0.2, 0.5, 0.8) are a fallback, not a standard. Field-specific comparisons are better whenever they exist.
Which Effect Size Goes With Which Analysis
Almost every test has a matching effect size, and picking the wrong one is a common reviewer catch. Find the analysis you ran, and read across.
| Analysis | Effect size | Range | What it expresses |
|---|---|---|---|
| Independent-samples t-test | Cohen's d, or Hedges' g for small samples | 0 upward | The gap between two means in standard deviation units |
| Paired-samples t-test | Cohen's d for paired data | 0 upward | The average change, standardized |
| One-way ANOVA | Eta-squared, partial eta-squared, or omega-squared | 0 to 1 | Proportion of variance in the outcome tied to the grouping |
| Correlation | Pearson's r, and r squared | -1 to 1 | Strength and direction of a linear association |
| Simple or multiple regression | R squared, or f squared for individual predictors | 0 to 1 | Variance in the outcome explained by the model |
| Logistic regression | Odds ratio | 0 upward | Multiplicative change in the odds of the outcome |
| Chi-square test | Cramer's V, or phi for a 2x2 table | 0 to 1 | Strength of association between categorical variables |
| Mann-Whitney U | Rank-biserial correlation | -1 to 1 | How consistently one group outranks the other |
| Kruskal-Wallis H | Epsilon-squared | 0 to 1 | Proportion of rank variance tied to the grouping |
Why a P-Value Is Not Enough
A significance test asks one narrow question: assuming no effect exists, how surprising is this result? It returns a probability, not a magnitude. That's a useful question. It's just not the question most readers actually have, and the gap between the two is where a lot of overstated research lives.
The problem is that p-values respond to sample size. Collect enough data and almost any difference, however tiny, will cross the significance threshold. A study of 50,000 people can find a two-point difference on a 100-point scale at p < .001. The result is real in the narrow statistical sense and irrelevant in every other sense. Reporting only the p-value hides that.
It cuts the other way too. A genuinely large effect in a small sample can miss significance entirely. A write-up reporting only "no significant difference" then buries a finding worth following up. The effect size makes the magnitude visible either way, which is why reporting both is now standard rather than optional. For the underlying logic of significance itself, see the guide to hypothesis testing.
The Two Families
Effect sizes divide into two broad groups, and knowing which one you're looking at tells you how to read the number.
Difference-based measures
These express the size of a gap between groups in standard deviation units. Cohen's d is the best known, with Hedges' g and Glass's delta as close relatives. They answer "how far apart are these groups, relative to how much the data varies?" Because the units cancel out, a d of 0.5 means the same thing whether you measured blood pressure or reading scores.
Association-based measures
These express how strongly two variables relate, or what share of the variance one accounts for in the other. Pearson's r, r squared, eta-squared, and Cramer's V all belong here. The variance-explained members run from 0 to 1 and are read as proportions. The mechanics of r, the most common member of this family, are covered in the guide to what the correlation coefficient measures.
Cohen's d, Worked by Hand
Seeing d calculated once makes it stop being abstract. Suppose you compared exam scores for 10 students who received tutoring against 10 who didn't.
| Group | n | Mean | Standard deviation |
|---|---|---|---|
| Tutored | 10 | 82.4 | 7.1 |
| Control | 10 | 76.1 | 6.8 |
Step 1: Pool the standard deviations
Cohen's d divides the difference between means by a single standard deviation representing both groups. The pooled standard deviation is a weighted combination of the two, with each group weighted by its degrees of freedom.
SD pooled = √[ ((n1 - 1)SD1² + (n2 - 1)SD2²) / (n1 + n2 - 2) ]
SD pooled = √[ (9 × 50.41 + 9 × 46.24) / 18 ] = √48.33 = 6.95
Step 2: Standardize the difference
Now divide the raw gap between the means by that pooled value. The units of measurement disappear, leaving a pure number.
d = (M1 - M2) / SD pooled
d = (82.4 - 76.1) / 6.95 = 6.3 / 6.95 = 0.91
Step 3: Read the result
A d of 0.91 means the two group means sit about nine tenths of a standard deviation apart. By Cohen's conventions that's a large effect, and unlike the 6.3-point raw difference, it's directly comparable to results from studies that used a different exam.
A note on Hedges' g
Cohen's d runs slightly high in small samples, overstating the effect. Hedges' g applies a correction factor that shrinks the estimate, and with 20 students here it brings d of 0.91 down to g of 0.87. The correction is negligible once samples pass about 20 per group. With small samples, g is the better-behaved choice, and many journals now prefer it by default.
Results section ready for review?
A missing effect size, or one paired with the wrong test, is among the first things a reviewer flags. Editor World's editors hold advanced degrees and read quantitative results sections every day. Start with a free sample edit of your first 300 words and choose an editor in your field.
Choose Your EditorEffect Sizes for ANOVA
With three or more groups, the effect size question changes shape. It's no longer "how far apart are these two means?" but "how much of the variation is tied to group membership?" The answer comes as a proportion.
Eta-squared divides the variance attributed to the grouping factor by the total variance. Say the between-groups sum of squares is 245.6 and the total is 1,180.4. Eta-squared is then 0.21, so about 21 percent of the variance in the outcome is associated with group membership.
Partial eta-squared is what most software reports for factorial designs. It divides the effect's variance by that effect's variance plus the error variance, ignoring other factors in the model. This matters because partial eta-squared values are larger than eta-squared values in the same analysis, and they don't sum to 1 across effects. Reporting one while labeling it the other inflates your apparent effect, which is a common and easily caught error.
Omega-squared is a less biased alternative to eta-squared that adjusts for sample size, and some fields now prefer it. Whichever you use, name it explicitly rather than writing "effect size = 0.21," so the reader knows which quantity they're reading. The tests themselves are covered in the guide to ANOVA.
Effect Sizes for Categorical and Binary Outcomes
When the outcome isn't continuous, the d and eta families don't apply, and different measures take over.
- Odds ratio. The standard effect size for a binary outcome, and the quantity logistic regression produces directly. An odds ratio of 2.08 means each one-unit increase in the predictor roughly doubles the odds of the outcome. Values above 1 increase the odds, below 1 decrease them, and 1 means no effect.
- Risk ratio. Common in medicine and epidemiology, and easier to interpret than the odds ratio because it compares probabilities rather than odds. The two converge only when the outcome is rare, so they aren't interchangeable.
- Cramer's V. The effect size for a chi-square test of association, running from 0 to 1. For a 2x2 table it reduces to phi. Chi-square results are frequently reported with the test statistic and p-value alone, which leaves out the magnitude entirely.
- Rank-biserial correlation and epsilon-squared. The counterparts for Mann-Whitney and Kruskal-Wallis respectively, covered alongside the tests in the guide to non-parametric tests.
What the Benchmarks Actually Mean
Cohen's small, medium, and large labels are the most cited numbers in this whole area, and the most misused. Here they are, alongside the equivalents for other measures.
| Measure | Small | Medium | Large |
|---|---|---|---|
| Cohen's d | 0.20 | 0.50 | 0.80 |
| Pearson's r | 0.10 | 0.30 | 0.50 |
| Eta-squared | 0.01 | 0.06 | 0.14 |
| Cramer's V (df = 1) | 0.10 | 0.30 | 0.50 |
Cohen proposed these as a fallback for researchers with nothing better to go on, and he said so at the time. They were not derived from data about any particular field. Since then, meta-analyses in several disciplines have found that typical effects run well below Cohen's medium. Judging your result against his conventions can therefore make an ordinary finding look disappointing, or a modest one look impressive.
The better move is to compare your effect against the published range in your own literature. If interventions in your area typically produce a d around 0.25, your d of 0.35 is a strong result. The conventional label for it is beside the point. When no field-specific comparison exists, use Cohen's benchmarks and say explicitly that you're doing so.
One more caution: statistical magnitude and practical importance are different things. A small standardized effect on a widely prescribed medication can matter enormously at population scale. A large effect on a measure nobody cares about matters not at all. The number sets up the argument about importance; it doesn't settle it.
Confidence Intervals Around Effect Sizes
An effect size is an estimate from a sample, so it carries uncertainty, and journals increasingly expect that uncertainty reported. Consider a d of 0.91 with an interval running from 0.02 to 1.80. It's a very different finding from a d of 0.91 with an interval from 0.75 to 1.07, though the point estimates match.
Wide intervals are the norm in small samples, and reporting them honestly is what stops a single underpowered study from being read as settled. Whether an interval includes zero also tells you what the significance test would have said, which makes the interval the more informative of the two.
Effect Size, Power, and Sample Size
Effect size does its most useful work before you collect any data. A power analysis asks how many participants you need to reliably detect an effect of a given size. The effect size you assume is the main input. Smaller assumed effects require substantially larger samples.
That assumed value should come from prior published research or pilot data where possible, falling back on Cohen's conventions only when neither exists. Optimistic assumptions are the most common route to an underpowered study. Assume a d of 0.8, find a d of 0.3, and the study was never large enough to detect what was actually there. The full procedure, including how to translate an assumed effect into a target n, is covered in the guide to calculating sample size.
Reporting Effect Sizes in APA Format
The effect size goes in the same sentence as the significance test, not in a separate paragraph and not only in a table. A complete report of the tutoring example reads:
Tutored students scored significantly higher than controls, t(18) = 2.03, p = .029, d = 0.91, 95% CI [0.02, 1.80].
A few conventions hold across measures. Name the specific measure rather than writing "effect size," since d, g, and partial eta-squared are not interchangeable. Italicize the symbol and leave the number upright. Report two decimal places for most measures. Include the confidence interval where your software provides one. And interpret the number in the surrounding text, because a reader shouldn't have to know Cohen's conventions by heart to understand what you found.
Common Mistakes
- Reporting significance without magnitude. A p-value alone tells the reader an effect probably isn't zero. It says nothing about whether it's worth caring about.
- Treating Cohen's benchmarks as authoritative. They're a fallback for when field-specific comparisons don't exist. Compare against your own literature first.
- Confusing eta-squared with partial eta-squared. Partial values are larger in the same analysis. Label which one you're reporting.
- Calling a large effect important without argument. Statistical magnitude and practical significance are separate claims. Make the second one explicitly, with reference to the outcome's real-world stakes.
- Reporting an effect size that doesn't match the test. Cohen's d belongs to mean comparisons, not chi-square tables. Use the pairing your analysis calls for.
- Omitting the confidence interval. A point estimate from a small sample can be wildly imprecise, and the interval is what shows it.
- Computing an effect size only after a significant result. Nonsignificant findings need effect sizes too. A large effect that missed significance is a signal the study was underpowered, and that's worth reporting rather than hiding.
Where to Go Next
Effect sizes sit alongside the tests that produce them. For the comparisons that generate a Cohen's d, see the guides to t-tests and ANOVA. For the association measures, see what the correlation coefficient measures and using correlation coefficients in research papers, which covers reporting conventions in detail. For the standard deviation that sits underneath every difference-based measure, see the guide to standard deviation and variance.
When the analysis is written up, the results section is where a subject-matter editor earns their place. A reviewer who spots a mislabeled effect size, or a magnitude claim the number doesn't support, will question everything around it. Editor World's academic editing, dissertation editing, and journal article editing services include review of statistical reporting. You choose your own editor by field, so the person reading your results knows your discipline's conventions.
Frequently Asked Questions
What is an effect size in statistics?
An effect size is a standardized number describing how big a difference between groups is, or how strong an association between variables is. Unlike a p-value, it doesn't depend on sample size, so it answers how large a result is rather than whether it's significant. Because the units are standardized, results from studies using different measures or scales can be compared directly, which is what makes meta-analysis possible.
Why is an effect size more informative than a p-value?
A p-value responds heavily to sample size. With enough data, a difference too small to matter still crosses the significance threshold. In a small sample, a genuinely large effect can miss significance entirely. So the p-value tells you only that an effect probably isn't zero. The effect size tells you how large it actually is, which is what a reader needs to judge whether the finding matters. For the logic behind significance itself, see the guide to hypothesis testing.
How do you calculate Cohen's d?
Subtract one group mean from the other and divide by the pooled standard deviation. That pooled value is the square root of the weighted average of the two group variances. Group means of 82.4 and 76.1 with a pooled standard deviation of 6.95 give a d of 0.91. The means sit about nine tenths of a standard deviation apart. In small samples, Hedges' g trims the slight upward bias in d. Here it brings 0.91 down to 0.87.
What counts as a small, medium, or large effect size?
Cohen proposed 0.20, 0.50, and 0.80 for d, and 0.10, 0.30, and 0.50 for r. He offered these as a fallback for researchers with no field-specific information, not as a standard derived from data. Meta-analyses in several disciplines find typical effects well below Cohen's medium. It's stronger to compare your result against the published range in your own field. Fall back on the conventions only when that comparison isn't available.
Which effect size should I use for my analysis?
Match the measure to the test. Cohen's d or Hedges' g goes with a t-test. Eta-squared, partial eta-squared, or omega-squared goes with ANOVA. Pearson's r and r squared go with correlation, and R squared with regression. An odds ratio goes with logistic regression, and Cramer's V with a chi-square test. Rank-based tests have their own, covered in the guide to non-parametric tests.
How do you report an effect size in APA format?
Put it in the same sentence as the significance test: t(18) = 2.03, p = .029, d = 0.91, 95% CI [0.02, 1.80]. Name the specific measure rather than writing "effect size," since d, g, and partial eta-squared aren't interchangeable. Italicize the symbol and leave the number upright. Give two decimals for most measures, include the confidence interval where your software provides one, and interpret the magnitude in plain language nearby.
Page last reviewed: September 2026. Content reviewed by Editor World editorial staff. Editor World, founded in 2010 by Patti Fisher, PhD, graduate of The Ohio State University, provides professional editing and proofreading services for academic researchers, doctoral candidates, faculty, business professionals, and authors worldwide. 100% human editing, no AI at any stage. BBB A+ accredited since 2010 with 5.0/5 Google Reviews and 5.0/5 Facebook Reviews. 16 years in business with 140 million+ words edited for over 8,000 clients in 65+ countries. Multiple Gold and Bronze Stevie Award winner. Native English editors from the United States, the United Kingdom, and Canada. Less than 5% of applicants are accepted to the editor panel. Recommended by the Boston University Economics Department, University of San Diego, University of Michigan, UCLA, University of Missouri, and more.