Skip to contents

This vignette walks through the core propensity score weighting workflow: fitting a propensity score model, calculating weights, and estimating causal effects with ipw(). We’ll also cover what to do when propensity scores are extreme.

Setup

We’ll work with a simulated dataset throughout. There are two confounders (x1 and x2), a binary exposure (z), and a binary outcome (y):

set.seed(42)
n <- 100
x1 <- rnorm(n)
x2 <- rnorm(n)
z <- rbinom(n, 1, plogis(0.5 * x1 + 0.3 * x2))
y <- rbinom(n, 1, plogis(-0.5 + 0.8 * z + 0.3 * x1 + 0.2 * x2))
dat <- data.frame(x1, z, y, x2)

Both x1 and x2 affect treatment and outcome, so we need to adjust for them.

Basic workflow

Step 1: Fit a propensity score model

Start with a model for treatment assignment. Here we use logistic regression:

ps_mod <- glm(z ~ x1 + x2, data = dat, family = binomial())

Step 2: Calculate weights and fit a weighted outcome model

Pass the fitted model directly to wt_ate() to get ATE weights. It pulls out the fitted values and exposure for you:

wts <- wt_ate(ps_mod)
#>  Using exposure variable "z" from GLM model
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
outcome_mod <- glm(y ~ z, data = dat, family = binomial(), weights = wts)
#> Warning in eval(family$initialize): non-integer #successes in a binomial glm!

wt_ate() returns a psw object, which is just a numeric vector with some extra metadata attached:

estimand(wts)
#> [1] "ate"
is_stabilized(wts)
#> [1] FALSE

You can also pass propensity scores as a plain numeric vector. In that case you need to supply the exposure too:

ps <- fitted(ps_mod)
wt_ate(ps, dat$z)
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
#> <psw{estimand = ate}[100]>
#>   [1]  1.237569  1.962759  2.211732  1.312977  1.974772  1.918957  3.413991
#>   [8]  1.844849  1.223426  2.048453  1.409967  1.189795  1.283684  2.580633
#>  [15]  1.439961  1.771951  1.627989  3.438494  1.092310  1.379591  1.414973
#>  [22]  1.142879  2.132832  2.539924  1.264028  1.584122  1.614753  1.115628
#>  [29]  2.235160  1.641530  1.598952  1.767794  1.494051  2.039262  3.465881
#>  [36]  1.174226  1.511863  1.832668  1.135144  2.045876  2.067593  2.960898
#>  [43]  1.724205  2.807457  1.296458  1.487979  1.433057  3.287998  2.085343
#>  [50]  2.000254  1.845028  1.286187  1.207434  2.360698  1.840088  1.704295
#>  [57]  1.642486  2.362152 12.582758  2.974447  1.677742  1.704949  2.553764
#>  [64]  1.438721  1.711034  1.227343  1.812465  1.409825  1.518867  3.314572
#>  [71]  1.404951  1.799540  2.354036  1.941761  1.909359  1.731474  2.080547
#>  [78]  2.731912  1.606549  3.350612  1.327948  2.103802  2.178471  2.018730
#>  [85]  3.813295  1.864473  2.078958  1.959235  1.747083  1.907159  3.853789
#>  [92]  1.584359  2.693732  1.644175  1.286716  1.788770  3.037240  1.416308
#>  [99]  1.474800  1.619529

Step 3: Estimate causal effects

ipw() takes the propensity score model and the weighted outcome model and returns causal effect estimates. The standard errors use linearization to account for the fact that the propensity scores are estimated:

result <- ipw(ps_mod, outcome_mod)
result
#> Inverse Probability Weight Estimator
#> Estimand: ATE 
#> 
#> Propensity Score Model:
#>   Call: glm(formula = z ~ x1 + x2, family = binomial(), data = dat) 
#> 
#> Outcome Model:
#>   Call: glm(formula = y ~ z, family = binomial(), data = dat, weights = wts) 
#> 
#> Estimates:
#>         estimate  std.err        z ci.lower ci.upper conf.level   p.value    
#> rd       0.32000  0.10411  3.07376   0.1160  0.52404       0.95  0.002114 ** 
#> log(rr)  0.69137  0.12490  5.53528   0.4466  0.93618       0.95 3.107e-08 ***
#> log(or)  1.32884  0.12288 10.81398   1.0880  1.56969       0.95 < 2.2e-16 ***
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Choosing an estimand

Each estimand targets a different population:

Estimand Target population Function
ATE Entire study population wt_ate()
ATT Treated (focal) group wt_att()
ATU Untreated (reference) group wt_atu()
ATO Overlap population wt_ato()
ATM Matched population wt_atm()
Entropy Entropy-balanced population wt_entropy()

wt_atc() is an alias for wt_atu().

ATE is the most common choice. ATT and ATU narrow the question to the treated or untreated, respectively. ATO, ATM, and entropy weights target overlap populations – they produce bounded weights by construction, which makes them a good option when propensity scores are extreme (more on that below).

To switch estimands, just swap the weight function:

wts_ate <- wt_ate(ps_mod)
#>  Using exposure variable "z" from GLM model
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
wts_att <- wt_att(ps_mod)
#>  Using exposure variable "z" from GLM model
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
wts_ato <- wt_ato(ps_mod)
#>  Using exposure variable "z" from GLM model
#>  Treating `.exposure` as binary
#>  Setting focal level to 1

Handling extreme weights

Propensity scores near 0 or 1 produce large weights that can blow up your variance. The summary() method gives a quick look at the weight distribution:

summary(wts_ate)
#>    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
#>   1.092   1.440   1.780   2.028   2.111  12.583

If you see a very large maximum or high variance, you have a few options.

Overlap estimands

The easiest fix is to use an estimand with bounded weights. wt_ato() and wt_atm() down-weight observations where overlap is poor:

summary(wt_ato(ps_mod))
#>  Using exposure variable "z" from GLM model
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
#>    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
#> 0.08451 0.30539 0.43830 0.43370 0.52629 0.92053
summary(wt_atm(ps_mod))
#>  Using exposure variable "z" from GLM model
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
#>    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
#> 0.09231 0.43965 0.78036 0.70946 1.00000 1.00000

The trade-off is that you’re now targeting a different population.

Trimming

ps_trim() drops observations with extreme propensity scores by setting them to NA. The "ps" method uses fixed thresholds (by default, 0.1 and 0.9):

ps_trimmed <- ps_trim(ps, method = "ps")

The "adaptive" method (Crump et al., 2009) finds a data-driven threshold:

ps_trimmed_adapt <- ps_trim(ps, method = "adaptive")

You can inspect the result with a few helpers:

# Confirm the object has been trimmed
is_ps_trimmed(ps_trimmed)
#> [1] TRUE

# Which observations were removed?
sum(is_unit_trimmed(ps_trimmed))
#> [1] 2

# View trimming metadata (method, cutoffs, etc.)
ps_trim_meta(ps_trimmed)
#> $method
#> [1] "ps"
#> 
#> $lower
#> [1] 0.1
#> 
#> $upper
#> [1] 0.9
#> 
#> $keep_idx
#>   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  20  21 
#>   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  20  21 
#>  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41 
#>  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41 
#>  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  60  61  62 
#>  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  60  61  62 
#>  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82 
#>  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82 
#>  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 
#>  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 
#> 
#> $trimmed_idx
#> [1] 19 59

Use !is_unit_trimmed() to subset your data down to the retained observations:

retained <- !is_unit_trimmed(ps_trimmed)
dat_trimmed <- dat[retained, ]

After trimming, you should refit the propensity score model on the retained sample so the scores reflect the trimmed population:

ps_refitted <- ps_refit(ps_trimmed, ps_mod)
is_refit(ps_refitted)
#> [1] TRUE

Then pass the refitted scores to the weight function as usual:

wts_trimmed <- wt_ate(ps_refitted, dat$z)
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
summary(wts_trimmed)
#>    Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
#>   1.073   1.386   1.726   1.970   2.157   4.724       2

See ?ps_trim for other trimming methods, including percentile-based ("pctl"), preference score ("pref"), and common range ("cr").

Truncation

Truncation is similar to trimming but keeps all observations – it just clips extreme scores to specified bounds:

ps_truncated <- ps_trunc(ps, lower = 0.05, upper = 0.95)

is_unit_truncated() tells you which observations were clipped:

is_ps_truncated(ps_truncated)
#> [1] TRUE
sum(is_unit_truncated(ps_truncated))
#> [1] 0
ps_trunc_meta(ps_truncated)
#> $method
#> [1] "ps"
#> 
#> $lower_bound
#> [1] 0.05
#> 
#> $upper_bound
#> [1] 0.95
#> 
#> $truncated_idx
#> integer(0)
wts_truncated <- wt_ate(ps_truncated, dat$z)
#>  Treating `.exposure` as binary
#>  Setting focal level to 1
summary(wts_truncated)
#>    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
#>   1.092   1.440   1.780   2.028   2.111  12.583

Which approach?

These aren’t mutually exclusive. In general: overlap estimands like wt_ato() are the easiest path if your research question allows it. Trimming (followed by ps_refit()) is the standard choice when you need ATE but have near-violations of positivity. Truncation is a lighter touch when you want to keep the full sample.

Interpreting results

Binary outcomes

For binary outcomes, ipw() returns three effect measures: the risk difference, log risk ratio, and log odds ratio:

result
#> Inverse Probability Weight Estimator
#> Estimand: ATE 
#> 
#> Propensity Score Model:
#>   Call: glm(formula = z ~ x1 + x2, family = binomial(), data = dat) 
#> 
#> Outcome Model:
#>   Call: glm(formula = y ~ z, family = binomial(), data = dat, weights = wts) 
#> 
#> Estimates:
#>         estimate  std.err        z ci.lower ci.upper conf.level   p.value    
#> rd       0.32000  0.10411  3.07376   0.1160  0.52404       0.95  0.002114 ** 
#> log(rr)  0.69137  0.12490  5.53528   0.4466  0.93618       0.95 3.107e-08 ***
#> log(or)  1.32884  0.12288 10.81398   1.0880  1.56969       0.95 < 2.2e-16 ***
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

as.data.frame() pulls the estimates into a data frame:

as.data.frame(result)
#>    effect  estimate   std.err         z  ci.lower  ci.upper conf.level
#> 1      rd 0.3199973 0.1041062  3.073758 0.1159529 0.5240417       0.95
#> 2 log(rr) 0.6913736 0.1249031  5.535278 0.4465679 0.9361792       0.95
#> 3 log(or) 1.3288426 0.1228819 10.813984 1.0879986 1.5696867       0.95
#>        p.value
#> 1 2.113806e-03
#> 2 3.107345e-08
#> 3 0.000000e+00

Use exponentiate = TRUE to get risk ratios and odds ratios on their natural scale. The standard errors, z-statistics, and p-values stay on the log scale:

as.data.frame(result, exponentiate = TRUE)
#>   effect  estimate   std.err         z  ci.lower  ci.upper conf.level
#> 1     rd 0.3199973 0.1041062  3.073758 0.1159529 0.5240417       0.95
#> 2     rr 1.9964559 0.1249031  5.535278 1.5629389 2.5502189       0.95
#> 3     or 3.7766698 0.1228819 10.813984 2.9683272 4.8051424       0.95
#>        p.value
#> 1 2.113806e-03
#> 2 3.107345e-08
#> 3 0.000000e+00

Continuous outcomes

For continuous outcomes, ipw() returns the mean difference. Use lm() for the outcome model:

y_cont <- 2 + 0.8 * z + 0.3 * x1 + 0.2 * x2 + rnorm(n)
dat$y_cont <- y_cont
outcome_cont <- lm(y_cont ~ z, data = dat, weights = wts)
ipw(ps_mod, outcome_cont)
#> Inverse Probability Weight Estimator
#> Estimand: ATE 
#> 
#> Propensity Score Model:
#>   Call: glm(formula = z ~ x1 + x2, family = binomial(), data = dat) 
#> 
#> Outcome Model:
#>   Call: lm(formula = y_cont ~ z, data = dat, weights = wts) 
#> 
#> Estimates:
#>      estimate std.err       z ci.lower ci.upper conf.level   p.value    
#> diff  0.92737 0.20498 4.52416   0.5256   1.3291       0.95 6.064e-06 ***
#> ---
#> Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Next steps

The examples above all use binary exposures. propensity also handles continuous and categorical treatments.

Continuous exposures

For continuous exposures, weights use density ratios. Stabilization is usually a good idea here:

# Fit a model for the continuous exposure
ps_cont <- glm(continuous_exposure ~ x1 + x2, data = dat, family = gaussian())

# Stabilized weights (strongly recommended for continuous exposures)
wts_cont <- wt_ate(ps_cont, stabilize = TRUE)

Categorical exposures

For multi-level treatments, pass a matrix or data frame of predicted probabilities with one column per level:

# Multinomial propensity scores (one column per treatment level)
ps_matrix <- predict(multinom_model, type = "probs")
wt_ate(ps_matrix, exposure, exposure_type = "categorical")

# ATT and ATU require specifying the focal level
wt_att(ps_matrix, exposure, .focal_level = "treated")

Calibration

ps_calibrate() adjusts propensity scores so they better reflect treatment probabilities. Where trimming and truncation deal with the tails, calibration reshapes the whole distribution. It supports logistic calibration (the default) and isotonic regression:

ps_calibrated <- ps_calibrate(ps, dat$z, method = "logistic", smooth = FALSE)
is_ps_calibrated(ps_calibrated)

wts_calibrated <- wt_ate(ps_calibrated, dat$z)

Censoring weights

wt_cens() calculates inverse probability of censoring weights for survival or longitudinal analyses:

# Model the probability of being uncensored
cens_mod <- glm(uncensored ~ x1 + x2, data = dat, family = binomial())
wts_cens <- wt_cens(cens_mod)

# Censoring weights use the same formula as ATE weights
estimand(wts_cens) # "uncensored"

Learning more

See the function reference for details: