This page explains the details of estimating weights from covariate balancing propensity scores by setting method = "cbps"
in the call to weightit
or weightitMSM
. This method can be used with binary, multinomial, and continuous treatments.
In general, this method relies on estimating propensity scores using generalized method of moments and then converting those propensity scores into weights using a formula that depends on the desired estimand. This method relies on CBPS
from the CBPS package.
Binary Treatments
For binary treatments, this method estimates the propensity scores and weights using CBPS
. The following estimands are allowed: ATE, ATT, and ATC. The weights are taken from the output of the CBPS
fit object. When the estimand is the ATE, the return propensity score is the probability of being in the "second" treatment group, i.e., levels(factor(treat))[2]
; when the estimand is the ATC, the returned propensity score is the probability of being in the control (i.e., non-focal) group.
Multinomial Treatments
For multinomial treatments with three or four categories and when the estimand is the ATE, this method estimates the propensity scores and weights using one call to CBPS
. For multinomial treatments with three or four categories or when the estimand is the ATT, this method estimates the propensity scores and weights using multiple calls to CBPS
. The following estimands are allowed: ATE and ATT. The weights are taken from the output of the CBPS
fit objects.
Continuous Treatments
For continuous treatments, the generalized propensity score and weights are estimated using CBPS
.
Longitudinal Treatments
For longitudinal treatments, the weights are the product of the weights estimated at each time point. This is not how CBMSM
in the CBPS package estimates weights for longitudinal treatments.
Sampling Weights
Sampling weights are supported through s.weights
in all scenarios. See Note about sampling weights.
Missing Data
In the presence of missing data, the following value(s) for missing
are allowed:
"ind"
(default)First, for each variable with missingness, a new missingness indicator variable is created which takes the value 1 if the original covariate is NA
and 0 otherwise. The missingness indicators are added to the model formula as main effects. The missing values in the covariates are then replaced with 0s (this value is arbitrary and does not affect estimation). The weight estimation then proceeds with this new formula and set of covariates. The covariates output in the resulting weightit
object will be the original covariates with the NA
s.