This page explains the details of estimating weights from SuperLearner-based propensity scores by setting method = "super"
in the call to weightit()
or weightitMSM()
. This method can be used with binary, multi-category, and continuous treatments.
In general, this method relies on estimating propensity scores using the SuperLearner algorithm for stacking predictions and then converting those propensity scores into weights using a formula that depends on the desired estimand. For binary and multi-category treatments, one or more binary classification algorithms are used to estimate the propensity scores as the predicted probability of being in each treatment given the covariates. For continuous treatments, regression algorithms are used to estimate generalized propensity scores as the conditional density of treatment given the covariates. This method relies on SuperLearnerSuperLearner from the SuperLearner package.
Binary Treatments
For binary treatments, this method estimates the propensity scores using SuperLearnerSuperLearner. The following estimands are allowed: ATE, ATT, ATC, ATO, ATM, and ATOS. Weights can also be computed using marginal mean weighting through stratification for the ATE, ATT, and ATC. See get_w_from_ps()
for details.
Multi-Category Treatments
For multi-category treatments, the propensity scores are estimated using several calls to SuperLearnerSuperLearner, one for each treatment group; the treatment probabilities are not normalized to sum to 1. The following estimands are allowed: ATE, ATT, ATC, ATO, and ATM. The weights for each estimand are computed using the standard formulas or those mentioned above. Weights can also be computed using marginal mean weighting through stratification for the ATE, ATT, and ATC. See get_w_from_ps()
for details.
Continuous Treatments
For continuous treatments, the generalized propensity score is estimated using SuperLearnerSuperLearner. In addition, kernel density estimation can be used instead of assuming a normal density for the numerator and denominator of the generalized propensity score by setting density = "kernel"
. Other arguments to density()
can be specified to refine the density estimation parameters. plot = TRUE
can be specified to plot the density for the numerator and denominator, which can be helpful in diagnosing extreme weights.
Longitudinal Treatments
For longitudinal treatments, the weights are the product of the weights estimated at each time point.
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 the covariate medians (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 resultingweightit
object will be the original covariates with theNA
s.
Details
SuperLearner works by fitting several machine learning models to the treatment and covariates and then taking a weighted combination of the generated predicted values to use as the propensity scores, which are then used to construct weights. The machine learning models used are supplied using the SL.library
argument; the more models are supplied, the higher the chance of correctly modeling the propensity score. The predicted values are combined using the method supplied in the SL.method
argument (which is nonnegative least squares by default). A benefit of SuperLearner is that, asymptotically, it is guaranteed to perform as well as or better than the best-performing method included in the library. Using Balance SuperLearner by setting SL.method = "method.balance"
works by selecting the combination of predicted values that minimizes an imbalance measure.
Note
Some methods formerly available in SuperLearner are now in SuperLearnerExtra, which can be found on GitHub at https://github.com/ecpolley/SuperLearnerExtra.
The criterion
argument used to be called stop.method
, which is its name in twang. stop.method
still works for backward compatibility. Additionally, the criteria formerly named as es.mean
, es.max
, and es.rms
have been renamed to smd.mean
, smd.max
, and smd.rms
. The former are used in twang and will still work with weightit()
for backward compatibility.
As of version 1.2.0, the default behavior for binary and multi-category treatments is to stratify on the treatment when performing cross-validation to ensure all treatment groups are represented in cross-validation. To recover previous behavior, set cvControl = list(stratifyCV = FALSE)
.
Additional Arguments
discrete
if
TRUE
, uses discrete SuperLearner, which simply selects the best performing method. DefaultFALSE
, which finds the optimal combination of predictions for the libraries usingSL.method
.
An argument to SL.library
must be supplied. To see a list of available entries, use SuperLearnerlistWrappers.
All arguments to SuperLearnerSuperLearner can be passed through weightit()
or weightitMSM()
, with the following exceptions:
obsWeights
is ignored because sampling weights are passed usings.weights
.method
inSuperLearner()
is replaced with the argumentSL.method
inweightit()
.
For continuous treatments only, the following arguments may be supplied:
density
A function corresponding to the conditional density of the treatment. The standardized residuals of the treatment model will be fed through this function to produce the numerator and denominator of the generalized propensity score weights. If blank,
dnorm()
is used as recommended by Robins et al. (2000). This can also be supplied as a string containing the name of the function to be called. If the string contains underscores, the call will be split by the underscores and the latter splits will be supplied as arguments to the second argument and beyond. For example, ifdensity = "dt_2"
is specified, the density used will be that of a t-distribution with 2 degrees of freedom. Using a t-distribution can be useful when extreme outcome values are observed (Naimi et al., 2014).Can also be
"kernel"
to use kernel density estimation, which callsdensity()
to estimate the numerator and denominator densities for the weights. (This used to be requested by settinguse.kernel = TRUE
, which is now deprecated.)bw
,adjust
,kernel
,n
If
density = "kernel"
, the arguments todensity()
. The defaults are the same as those indensity()
except thatn
is 10 times the number of units in the sample.plot
If
density = "kernel"
, whether to plot the estimated densities.
Balance SuperLearner
In addition to the methods allowed by SuperLearner()
, one can specify SL.method = "method.balance"
to use "Balance SuperLearner" as described by Pirracchio and Carone (2018), wherein covariate balance is used to choose the optimal combination of the predictions from the methods specified with SL.library
. Coefficients are chosen (one for each prediction method) so that the weights generated from the weighted combination of the predictions optimize a balance criterion, which must be set with the criterion
argument, described below.
criterion
A string describing the balance criterion used to select the best weights. See cobaltbal.compute for allowable options for each treatment type. For binary and multi-category treatments, the default is
"smd.mean"
, which minimizes the average absolute standard mean difference among the covariates between treatment groups. For continuous treatments, the default is"p.mean"
, which minimizes the average absolute Pearson correlation between the treatment and covariates.
Note that this implementation differs from that of Pirracchio and Carone (2018) in that here, balance is measured only on the terms included in the model formula (i.e., and not their interactions unless specifically included), and balance results from a sample weighted using the estimated predicted values as propensity scores, not a sample matched using propensity score matching on the predicted values. Binary and continuous treatments are supported, but currently multi-category treatments are not.
Additional Outputs
info
For binary and continuous treatments, a list with two entries,
coef
andcvRisk
. For multi-category treatments, a list of lists with these two entries, one for each treatment level.coef
The coefficients in the linear combination of the predictions from each method in
SL.library
. Higher values indicate that the corresponding method plays a larger role in determining the resulting predicted value, and values close to zero indicate that the method plays little role in determining the predicted value. Whendiscrete = TRUE
, these correspond to the coefficients that would have been estimated haddiscrete
beenFALSE
.cvRisk
The cross-validation risk for each method in
SL.library
. Higher values indicate that the method has worse cross-validation accuracy. WhenSL.method = "method.balance"
, the sample weighted balance statistic requested withcriterion
. Higher values indicate worse balance.
obj
When
include.obj = TRUE
, the SuperLearner fit(s) used to generate the predicted values. For binary and continuous treatments, the output of the call to SuperLearnerSuperLearner. For multi-category treatments, a list of outputs to calls toSuperLearner::SuperLearner()
.
References
Binary treatments
Pirracchio, R., Petersen, M. L., & van der Laan, M. (2015). Improving Propensity Score Estimators’ Robustness to Model Misspecification Using Super Learner. American Journal of Epidemiology, 181(2), 108–119. doi:10.1093/aje/kwu253
Continuous treatments
Kreif, N., Grieve, R., Díaz, I., & Harrison, D. (2015). Evaluation of the Effect of a Continuous Treatment: A Machine Learning Approach with an Application to Treatment for Traumatic Brain Injury. Health Economics, 24(9), 1213–1228. doi:10.1002/hec.3189
Balance SuperLearner (SL.method = "method.balance"
)
Pirracchio, R., & Carone, M. (2018). The Balance Super Learner: A robust adaptation of the Super Learner to improve estimation of the average treatment effect in the treated based on propensity score matching. Statistical Methods in Medical Research, 27(8), 2504–2518. doi:10.1177/0962280216682055
See method_glm
for additional references.
Examples
library("cobalt")
data("lalonde", package = "cobalt")
#Balancing covariates between treatment groups (binary)
(W1 <- weightit(treat ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "super", estimand = "ATT",
SL.library = c("SL.glm", "SL.stepAIC",
"SL.glm.interaction")))
#> Loading required package: nnls
#> A weightit object
#> - method: "super" (propensity score weighting with SuperLearner)
#> - number of obs.: 614
#> - sampling weights: none
#> - treatment: 2-category
#> - estimand: ATT (focal: 1)
#> - covariates: age, educ, married, nodegree, re74
summary(W1)
#> Summary of weights
#>
#> - Weight ranges:
#>
#> Min Max
#> treated 1.0000 || 1.0000
#> control 0.0077 |---------------------------| 4.7517
#>
#> - Units with the 5 most extreme weights by group:
#>
#> 5 4 3 2 1
#> treated 1 1 1 1 1
#> 411 589 269 409 296
#> control 2.2351 2.3211 2.5066 3.0135 4.7517
#>
#> - Weight statistics:
#>
#> Coef of Var MAD Entropy # Zeros
#> treated 0.000 0.000 0.000 0
#> control 1.035 0.729 0.413 0
#>
#> - Effective Sample Sizes:
#>
#> Control Treated
#> Unweighted 429. 185
#> Weighted 207.44 185
bal.tab(W1)
#> Balance Measures
#> Type Diff.Adj
#> prop.score Distance 0.0988
#> age Contin. -0.0990
#> educ Contin. 0.0204
#> married Binary -0.0051
#> nodegree Binary 0.0170
#> re74 Contin. -0.0276
#>
#> Effective sample sizes
#> Control Treated
#> Unadjusted 429. 185
#> Adjusted 207.44 185
#Balancing covariates with respect to race (multi-category)
(W2 <- weightit(race ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "super", estimand = "ATE",
SL.library = c("SL.glm", "SL.stepAIC",
"SL.glm.interaction")))
#> A weightit object
#> - method: "super" (propensity score weighting with SuperLearner)
#> - number of obs.: 614
#> - sampling weights: none
#> - treatment: 3-category (black, hispan, white)
#> - estimand: ATE
#> - covariates: age, educ, married, nodegree, re74
summary(W2)
#> Summary of weights
#>
#> - Weight ranges:
#>
#> Min Max
#> black 1.4670 |--------------------| 14.3621
#> hispan 1.8804 |--------------------------| 18.7082
#> white 1.0637 |----| 5.0822
#>
#> - Units with the 5 most extreme weights by group:
#>
#> 190 184 485 181 182
#> black 7.1819 7.363 9.3163 12.104 14.3621
#> 512 269 346 392 345
#> hispan 14.1698 15.107 15.3578 15.6577 18.7082
#> 23 409 457 296 589
#> white 4.3491 4.3745 4.4253 5.0691 5.0822
#>
#> - Weight statistics:
#>
#> Coef of Var MAD Entropy # Zeros
#> black 0.630 0.389 0.134 0
#> hispan 0.438 0.355 0.096 0
#> white 0.396 0.325 0.072 0
#>
#> - Effective Sample Sizes:
#>
#> black hispan white
#> Unweighted 243. 72. 299.
#> Weighted 174.1 60.53 258.58
bal.tab(W2)
#> Balance summary across all treatment pairs
#> Type Max.Diff.Adj
#> age Contin. 0.1486
#> educ Contin. 0.0773
#> married Binary 0.0364
#> nodegree Binary 0.0145
#> re74 Contin. 0.0533
#>
#> Effective sample sizes
#> black hispan white
#> Unadjusted 243. 72. 299.
#> Adjusted 174.1 60.53 258.58
#Balancing covariates with respect to re75 (continuous)
#assuming t(8) conditional density for treatment
(W3 <- weightit(re75 ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "super", density = "dt_8",
SL.library = c("SL.glm", "SL.ridge",
"SL.glm.interaction")))
#> A weightit object
#> - method: "super" (propensity score weighting with SuperLearner)
#> - number of obs.: 614
#> - sampling weights: none
#> - treatment: continuous
#> - covariates: age, educ, married, nodegree, re74
summary(W3)
#> Summary of weights
#>
#> - Weight ranges:
#>
#> Min Max
#> all 0.0438 |---------------------------| 20.5221
#>
#> - Units with the 5 most extreme weights:
#>
#> 431 483 484 485 354
#> all 9.4153 16.9496 18.1183 18.5976 20.5221
#>
#> - Weight statistics:
#>
#> Coef of Var MAD Entropy # Zeros
#> all 1.327 0.504 0.34 0
#>
#> - Effective Sample Sizes:
#>
#> Total
#> Unweighted 614.
#> Weighted 222.67
bal.tab(W3)
#> Balance Measures
#> Type Corr.Adj
#> age Contin. 0.0287
#> educ Contin. 0.0338
#> married Binary 0.0603
#> nodegree Binary -0.0585
#> re74 Contin. 0.0377
#>
#> Effective sample sizes
#> Total
#> Unadjusted 614.
#> Adjusted 222.67
#Balancing covariates between treatment groups (binary)
# using balance SuperLearner to minimize the maximum
# KS statistic
(W4 <- weightit(treat ~ age + educ + married +
nodegree + re74, data = lalonde,
method = "super", estimand = "ATT",
SL.library = c("SL.glm", "SL.stepAIC",
"SL.lda"),
SL.method = "method.balance",
criterion = "ks.max"))
#> A weightit object
#> - method: "super" (propensity score weighting with SuperLearner)
#> - number of obs.: 614
#> - sampling weights: none
#> - treatment: 2-category
#> - estimand: ATT (focal: 1)
#> - covariates: age, educ, married, nodegree, re74
summary(W4)
#> Summary of weights
#>
#> - Weight ranges:
#>
#> Min Max
#> treated 1.0000 || 1.0000
#> control 0.0222 |---------------------------| 2.0438
#>
#> - Units with the 5 most extreme weights by group:
#>
#> 5 4 3 2 1
#> treated 1 1 1 1 1
#> 411 595 269 409 296
#> control 1.3303 1.4365 1.5005 1.6369 2.0438
#>
#> - Weight statistics:
#>
#> Coef of Var MAD Entropy # Zeros
#> treated 0.000 0.000 0.00 0
#> control 0.823 0.701 0.33 0
#>
#> - Effective Sample Sizes:
#>
#> Control Treated
#> Unweighted 429. 185
#> Weighted 255.99 185
bal.tab(W4, stats = c("m", "ks"))
#> Balance Measures
#> Type Diff.Adj KS.Adj
#> prop.score Distance 0.0199 0.0944
#> age Contin. 0.0459 0.2764
#> educ Contin. -0.0360 0.0601
#> married Binary 0.0044 0.0044
#> nodegree Binary 0.0080 0.0080
#> re74 Contin. -0.0275 0.2839
#>
#> Effective sample sizes
#> Control Treated
#> Unadjusted 429. 185
#> Adjusted 255.99 185