Matched Comparison¶
Matching method — instantiates Confounder Control
Pairs each exposed unit with unexposed unit(s) alike on the measured confounders, so the compared groups are balanced on those variables by construction before any outcome is examined.
Matched Comparison buys comparability directly: it pairs each exposed unit with one or more unexposed units that are alike on the confounders you have measured, then compares outcomes within those pairs. The idea that distinguishes it from its siblings is that balance is achieved by explicit construction on named, measured variables — not left to chance (Random Assignment) and not imposed through a fitted model (Statistical Adjustment). You can point to exactly which confounders were equalized and check, on the matched set, that they were. The flip side, which defines its boundary, is stark: it can only balance confounders you actually measured and matched on.
Example¶
A surgical team asks whether laparoscopic surgery shortens recovery compared with the open procedure. The trouble is that surgeons tend to reserve the open procedure for sicker, older, higher-BMI patients — so the operation received is confounded with baseline health, and the naive comparison would credit laparoscopy with recoveries that were really just healthier patients.
Matched Comparison pairs each laparoscopic patient with an open-surgery patient of similar age, BMI, and comorbidity burden, discarding cases with no acceptable match. Within the matched set, the two arms now look alike on those measured confounders — a balance table confirms it — so the recovery-time difference is no longer explained by who was sicker. When many confounders must be balanced at once, they can be collapsed into a single propensity score and matched on that.[n1]
How it works¶
The distinguishing sequence is: pre-specify the matching variables (the confounders), find comparable unexposed units for each exposed one, discard the unmatchable, and verify balance on the matched set rather than assuming it. Matching restricts attention to the region of overlap — the common support — where exposed and unexposed genuinely resemble each other. Crucially, it equalizes only the variables entered; anything unmeasured, or measured but omitted, is untouched.
Tuning parameters¶
- Matching variables — which confounders to pair on. They must be measured and pre-exposure; matching on a mediator or collider actively introduces bias.
- Exact versus caliper or propensity matching — exact matching preserves transparent interpretation but discards many units; propensity matching summarizes many covariates into one score to keep sample size.
- Match ratio (1:1 vs 1:k) — more controls per exposed unit improves precision but forces looser matches.
- Caliper width — the maximum allowed distance within a pair; tighter calipers improve balance but discard more units and narrow the population.
When it helps, and when it misleads¶
Its strength is transparency: it is non-parametric on the matched variables, and balance is directly checkable rather than assumed by a model. When a few strong, well-measured confounders dominate, matching gives a clean, legible comparison.
Its central limitation is that it controls measured confounders only — the unmeasured ones survive untouched, the very gap that randomization would have closed. Discarding unmatched cases can also shift the analysis to a narrower population than the decision cares about, weakening generalizability. The classic misuse is matching on a variable that lies downstream of the exposure, which creates bias rather than removing it. The discipline is to match only on pre-exposure confounders drawn from the causal map, and to report both the matched-set balance and how many units were dropped to achieve it.
How it implements the components¶
comparability_check— comparability is matching's entire purpose and deliverable; the post-match balance table is the check that the paired groups are alike on the matched confounders.confounder_measurement_plan— you can only match on confounders you have measured, so matching forces an explicit plan to specify, obtain, and quantify each matching variable.
It does not control unmeasured confounders (Random Assignment handles those by design; Instrumental Variable Strategy and Sensitivity Analysis for Unmeasured Confounding address the unobserved), and it does not decide which variables are confounders rather than mediators (that is Causal Diagramming).
Related¶
- Instantiates: Confounder Control — Matched Comparison enforces comparability on the confounders the causal map names.
- Consumes: Causal Diagramming supplies the list of pre-exposure confounders that are safe to match on.
- Sibling mechanisms: Statistical Adjustment · Control Group Design · Causal Diagramming · Random Assignment · Stratified Analysis · Restriction or Eligibility Control · Instrumental Variable Strategy · Sensitivity Analysis for Unmeasured Confounding · Negative Control Check
Editorial Notes¶
Form Classification¶
Form family: Analysis, Modeling & Optimization
Rationale: Matched Comparison operates as a computation, comparison, model, or analytic representation used to infer, estimate, or choose because it pairs each exposed unit with unexposed unit(s) alike on the measured confounders, so the compared groups are balanced on those variables by construction before any outcome is examined.
Independent corroboration: The frozen evidence defines Matched Comparison as 'Pairs each exposed unit with unexposed unit(s) alike on the measured confounders, so the compared groups are balanced on those variables by construction before any outcome is examined', so its operative form is Analysis, Modeling & Optimization.
Review outcome: Independent reviewer agreement; high confidence.
Origin Attribution¶
Primary origin: Statistics & Experimental Design
Origin pattern: Single lineage
Present-day reach: Multi-domain
Rationale: Matching exposed and unexposed units on measured confounders is a standard statistical causal-inference method.
Review outcome: Independent reviewer agreement; high confidence.
Notes¶
[n1] A propensity score is a unit's estimated probability of being exposed given its measured covariates; matching or weighting on it balances that whole covariate set at once. It economizes on matching variables but inherits matching's core limit — it balances only the measured covariates that entered the score. ↩