E-Values and Unmeasured Confounding
Every observational causal method on this site — propensity scores, weighting, g-estimation, matching — rests on the same untestable assumption: no unmeasured confounding. You can adjust for what you measured; you cannot adjust for what you did not. So the honest question is not “is there residual confounding?” (there always might be) but “how strong would it have to be to overturn my conclusion?” Sensitivity analysis answers that, and the E-value is its most portable summary.
The bias a confounder can produce#
An unmeasured confounder distorts an estimate through two associations: how strongly it is linked to the exposure () and how strongly to the outcome (), each expressed as a risk ratio. VanderWeele & Ding (2017) showed the maximum factor by which such a confounder can inflate an observed risk ratio is
with no assumptions about the confounder’s distribution or direction. Setting equal to the observed traces the curve of confounder strengths that would just explain the effect away (Figure 1); anything above the curve more than explains it.
The E-value#
The E-value is the single number on that curve where the two required associations are equal — the minimum strength, on both the exposure and outcome sides, that an unmeasured confounder would need to reduce the observed association to the null:
for an observed risk ratio (use if it is protective). Report it for the point estimate and, separately, for the confidence-interval limit closest to the null — the latter asks how much confounding would make the result statistically null, a stricter bar. An E-value is not a probability that confounding exists; it is a yardstick for the conversation about robustness, to be judged against how strong measured confounders actually are.
Bigger effects are harder to explain away#
The E-value rises with the observed effect: a barely-elevated risk ratio evaporates under mild confounding, while a large one demands an implausibly strong hidden common cause (Figure 2). That is the intuition behind the old dictum that strong associations are harder to confound — the E-value just makes it quantitative.
A worked example#
Suppose an adjusted analysis reports a risk ratio of (95% CI –).
import numpy as np
def evalue(rr):
rr = rr if rr >= 1 else 1 / rr # protective effects: use the reciprocal
return rr + np.sqrt(rr * (rr - 1))
rr, ci_low = 1.8, 1.3
print(f"E-value (point estimate) {evalue(rr):.2f}")
print(f"E-value (CI limit) {evalue(ci_low):.2f}")
E-value (point estimate) 3.00
E-value (CI limit) 1.92
The point-estimate E-value is : an unmeasured confounder would need to be associated with both the exposure and the outcome by a risk ratio of at least — and be unaccounted for by every measured covariate — to explain away the finding. The CI-limit E-value of says confounding on the order of a risk ratio of would already render the result statistically null. Whether those are plausible is a subject-matter judgment: compare them to the strongest measured confounder in the study.
Related methods#
The E-value is the most transportable summary, but not the only sensitivity tool:
- Rosenbaum bounds — for matched studies, the factor by which two matched units’ odds of treatment could differ due to hidden bias before the conclusion changes.
- Tipping-point / bias-function analysis — posit a confounder with specified associations and re-estimate, finding where the effect crosses the null.
- Negative controls — an exposure or outcome that should show no effect; a non-null result there flags residual confounding.
Why it matters#
Observational studies dominate epidemiology precisely where randomization is impossible, and their central vulnerability is always the confounder nobody measured. An estimate reported without any sensitivity analysis quietly asks the reader to assume that vulnerability away; an E-value replaces that silence with a number, turning “there could be confounding” into “confounding this strong, on both arms, unexplained by everything measured — is that plausible here?” It is the natural last step after any of the adjustment methods on this site: those make the measured confounders comparable, and the E-value states, in one figure, how much the unmeasured ones could still matter.