Skip to content

Inverse-Probability Weighting Model

Method — instantiates Missingness-Aware Estimator Selection

Weights observed cases by modeled response probability to reduce bias from differential observation when covariates support the response model.

Inverse-Probability Weighting (IPW) keeps only the observed cases but lets each one stand in for the similar cases that went missing, by weighting it by the inverse of its modeled probability of being observed. A record that was unlikely to be seen — one whose covariates make records like it drop out often — is counted more heavily, rebuilding a pseudo-population that resembles the full sample. Its defining move is a single model of the response process and nothing else: no outcome model, no completed data, just a propensity-to-be-observed and the reciprocal weights it implies. That single-model focus is precisely what makes IPW's fate hinge on two things — whether observed covariates explain response, and whether every kind of record had a non-trivial chance of being seen.

Example

A national nutrition survey wants the population mean of daily sodium intake, but a chunk of sampled adults never return the diet questionnaire, and nonresponse skews toward younger, urban, higher-income respondents — all of which the sampling frame records. Analysts fit a response model: a logistic regression predicting returned the questionnaire from age, region, income band, and household size. Each responder then receives a weight equal to the inverse of their fitted return probability, so a demographic slice that responded at only 20% is scaled up roughly fivefold to speak for its absent peers. The reweighted mean sodium estimate is materially higher than the naive responder average, because the light responders skewed toward the healthier-eating groups. Before trusting it, the team inspects the weights: a handful of rare respondent profiles carry weights so large they dominate the estimate, flagging a fragile spot where the survey barely observed that slice at all.

How it works

  • Model the response. Regress an observed/not-observed indicator on covariates believed to drive missingness.
  • Invert to weights. Assign each observed case a weight equal to one over its estimated observation probability (optionally stabilized).
  • Reweight the analysis. Compute the target quantity on the observed cases using those weights, reconstructing the full-sample pseudo-population.
  • Interrogate the tails. Examine the weight distribution for extreme values that signal weak overlap and undue influence.

Tuning parameters

  • Response-model specification — which covariates and interactions enter the propensity model; richer models capture more of the mechanism but risk overfitting and extreme fitted probabilities.
  • Weight stabilization — using stabilized rather than raw weights lowers variance at the price of a modeling assumption in the numerator.
  • Trimming / truncation threshold — capping the largest weights curbs variance and influence but trades in a bit of bias.
  • Overlap handling — whether to restrict inference to the covariate region with adequate support, narrowing the estimand to keep it honest.

When it helps, and when it misleads

IPW is at its best when the response process is easier to reason about than the outcome — you know who tends not to answer, and you have the covariates that predict it. It targets the mechanism head-on and, with a single transparent model, makes the reweighting fully auditable.[n1]

Its failure mode is unstable weights from thin overlap: when some covariate profiles are almost never observed, their inverse weights blow up, a few cases hijack the estimate, and variance balloons — and no amount of stabilization manufactures information the survey never collected. It is also single-jeopardy: get the response model wrong and there is no backstop. The classic misuse is to report a tidy weighted mean while hiding the fact that three respondents carry half the weight. The guarding discipline is to treat the weight distribution and the covariate overlap as first-class diagnostics — trim, restrict the estimand, or admit the thin region rather than paper over it.

How it implements the components

  • observed_covariate_support_model — IPW's entire leverage is the response model built on observed covariates; it succeeds only where those covariates genuinely explain who is and isn't observed, and it makes that support the object of modeling.
  • positivity_or_overlap_check — inspecting the fitted probabilities and the resulting weights is the positivity check: near-zero observation probabilities surface as extreme weights, exposing where overlap fails.

It does not augment itself with an outcome model or reconcile a separate imputation model — estimator_identification_match and imputation_model_congruence_check are Doubly Robust Missingness Adjustment's; IPW stakes everything on the one response model, where the doubly robust estimator adds a second, outcome-side model as a hedge.

Editorial Notes

Form Classification

Form family: Analysis, Modeling & Optimization

Rationale: Inverse-Probability Weighting Model operates as a computation, comparison, model, or analytic representation used to infer, estimate, or choose because it weights observed cases by modeled response probability to reduce bias from differential observation when covariates support the response model

Independent corroboration: The frozen evidence defines Inverse-Probability Weighting Model as 'Weights observed cases by modeled response probability to reduce bias from differential observation when covariates support the response model', 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: Survey sampling, missing-data analysis, and causal inference in statistics developed inverse-probability weighting to reconstruct target populations.

Review outcome: Independent reviewer agreement; high confidence.

Notes

[n1] The Horvitz–Thompson estimator — the classical device of weighting each observed unit by the inverse of its selection (here, observation) probability to recover an unbiased population quantity. Its Achilles' heel, small selection probabilities producing enormous weights, is exactly the overlap problem IPW must police.