Effect Size vs Statistical Significance: Which One Should You Act On?

⏱️ 3 min read 📈 Data Analysis

Statistical significance tells you whether an effect is distinguishable from zero. Effect size tells you whether it is big enough to care about. With a large enough sample, a completely trivial difference will be significant, so a p-value on its own is not a decision. The number you act on is the effect size and its confidence interval.

Quick answer: Significance answers "is it different from zero?"; effect size answers "by how much?". A 5.00% vs 5.10% conversion difference (a 2% relative lift) is not significant at 100,000 users per arm (p = 0.31) but is significant at 500,000 per arm (p = 0.022) with an unchanged, still-trivial effect. Report the difference with a confidence interval (here: +0.10 pp, 95% CI [+0.014, +0.186]) or a standardized effect size such as Cohen's d = (M₁ - M₂) / s_pooled, where 0.2 is small, 0.5 medium, and 0.8 large.

What is the difference between effect size and significance?

Significance is a statement about evidence against the null hypothesis; effect size is a statement about magnitude. They answer different questions and can disagree in both directions.

Statistical significanceEffect size
Question answeredIs the difference distinguishable from zero?How large is the difference?
Depends on sample sizeYes, heavilyNo
Typical measuresp-value, z, tCohen's d, relative lift, absolute difference, r, odds ratio
UnitsUnitless probabilityMetric units or standard deviations
Drives the decisionScreens out noiseYes, this is the business input

The trap is that only one of these grows with your traffic. Collect enough data and any nonzero difference, however tiny, eventually crosses p < 0.05.

Why does a big sample make trivial effects significant?

Because the p-value depends on the effect size divided by the standard error, and the standard error shrinks with the square root of n. The effect stays the same; the yardstick gets finer.

Here is one fixed, real difference (5.00% vs 5.10% conversion, a 0.10 percentage point absolute gap and a 2% relative lift) tested at four sample sizes, α = 0.05 two-sided:

Users per armzp-valueVerdictEffect size
50,0000.720.470not significant+0.10 pp (2% rel.)
100,0001.020.307not significant+0.10 pp (2% rel.)
200,0001.440.149not significant+0.10 pp (2% rel.)
500,0002.280.022significant+0.10 pp (2% rel.)

The last row is the one people misread. Nothing about the change got better between rows three and four. You just bought enough traffic to resolve a difference that was never worth shipping engineering time for. Sample size is a measurement instrument, not evidence of importance.

How do I calculate Cohen's d?

Cohen's d expresses the gap between two group means in pooled standard deviations, so it is comparable across metrics with different units. Divide the difference in means by the pooled standard deviation.

d = (M₂ - M₁) / s_pooled

s_pooled = sqrt( ((n₁-1)s₁² + (n₂-1)s₂²) / (n₁ + n₂ - 2) )

Example: M₁ = 100, M₂ = 102, s_pooled = 15
  d = (102 - 100) / 15 = 0.133   ← a small effect

Conventional benchmarks (Cohen, 1988):
  0.2 small | 0.5 medium | 0.8 large

Now hold d fixed at 0.133 and vary n, using a two-sample t-test:

n per groupCohen's dtp-value
1000.1330.940.347
1,0000.1332.980.003
10,0000.1339.43< 0.0001

Same effect, three different verdicts. The d column is the one that stayed honest. Treat Cohen's benchmarks as rough conventions rather than rules; in a mature conversion funnel, d = 0.05 can be worth millions, and in a psychology lab d = 0.2 can be noise.

What effect size should I report for a conversion test?

For conversion rates, report the absolute difference in percentage points, the relative lift, and a confidence interval on the difference. Cohen's d is awkward for proportions and rarely how the business thinks.

Control:   5.00%    Variant: 5.10%     n = 500,000 per arm

Absolute difference: +0.10 percentage points
Relative lift:       +0.10 / 5.00 = +2.0%
95% CI on the difference: [+0.014 pp, +0.186 pp]
                     i.e. [+0.28%, +3.72%] relative

That interval is the whole answer. It excludes zero (so it is significant), and it tells you the plausible range runs from "basically nothing" to "3.7% better." If your minimum worthwhile lift was 5%, the interval rules that out entirely: this is a significant result that also constitutes evidence against the effect being big enough to matter. A p-value alone cannot express that. The same logic drives our note on overlapping confidence intervals: put the interval on the difference, not on each group.

Can a non-significant result still have a meaningful effect size?

Yes, and this is the mirror-image error. An underpowered test can show a large observed effect with a p-value of 0.30 simply because the interval is too wide to exclude zero.

If a test shows a +12% relative lift with a 95% CI of [-4%, +29%], the correct summary is "inconclusive, and consistent with anything from a small loss to a large win," not "no effect." Concluding "no difference" from a wide interval is the classic misuse of a null result. The remedy is more data, not a stronger adjective. See statistical power for sizing, and Type I vs Type II error for why false negatives are so easy to overlook.

Common mistakes reading effect size and significance

Pro Tip: Before a test starts, write down the minimum effect that would make you ship: "we roll out if the lift is at least 2% relative." Then judge the result by whether the confidence interval clears that line, not by whether it clears zero. This one habit turns "is it significant?" arguments into a numeric comparison anybody in the room can check.

← Back to Data Analysis Tips