Another approach worth considering is the inverse probability of treatment weighting (IPTW). With this approach, you still build your propensity model using whatever approach you like (either a logistic, multinomial logistic, classification tree, etc.), but instead of creating a new, balanced subsample by matching on the resulting propensity scores, you simply take the inverse of the probability that each case received their actual treatment and use that as a weight in your outcome model. In theory, this will result in covariate balance between your groups, while at the same time allowing you to retain your entire sample.
Below is an overview of the approach along with some diagnostics:
Austin, P. C., and Stuart, E. A. (2015) Moving towards best practice when using inverse probability of treatment weighting (IPTW) using the propensity score to estimate causal treatment effects in observational studies. Statist. Med., 34: 3661–3679. doi: 10.1002/sim.6607.
------------------------------
Adam Dugan
Original Message:
Sent: 07-12-2016 12:26
From: Andres Azuero
Subject: Propensity Scores as a covariate?
You are not restricted to a logistic model to compute a propensity score. You can use a non-linear model such as a classification tree (for instance), which can take care of interactions and non-linearities among covariates predicting group membership and doesn't require you to assume a specific model form (i.e., a linear equation). Not that classification trees are the modeling silver bullets, but the do require fewer assumptions compared to the more common logistic models. You can check if your propensity score model seems appropriate by using a residual analysis. The model residuals should not be associated to any of the covariates.
Once you have that, you can conduct the analysis of interest using a simpler linearized model predicting your outcome, but based on two variables: 1) the group indicator, and 2) the propensity score as the only covariate. This simplifies the modeling effort.
You could also match based on the propensity score, or other metric such as a multivariate distance (Mahalanobis). There are some newer algorithms for that like GenMatch.
Here is a paper where we did both the propensity score adjustment (with propensity scores from a non-linear model), and matching (with Mahalanobis distance). Fortunately the conclusions from both analyses were similar.
http://www.ncbi.nlm.nih.gov/pubmed/27185053
------------------------------
Andres Azuero
UAB
Original Message:
Sent: 07-12-2016 01:00
From: Selwyn Au
Subject: Propensity Scores as a covariate?
https://www.researchgate.net/post/Propensity_score_as_a_covariate_in_a_Cox_proportional_harzard_model-does_it_make_sense
This discussion has good debate on using it on a regression. I agree with the reasoning that if the score is used in conjunction with included variables, instabilty can occur.