Solved – multiple imputation and propensity scores

multiple-imputationpropensity-scoresr

I have a dataset with 1300 observations and 30 variables. One of the variables has 10% missing data, another has 5% and a third has 3%. Seeing Propensity score matching after multiple imputation I created an averaged propensity score based on the imputed data from MICE. Also based on the work by Mitra et al .

Now I need to

  1. do the matching procedure – preferably I´d like to use MatchIt, but it does not allow the propensity score to be pre-generated which is needed because of the averaging in the prior step. I can do it in Matching – However, I´m not very familiar with it. Does anyone know if a pre-generated propensity score can be used in MatchIt?
  2. I need to supply some proof that the matched groups are similar with regards to the covariates used in the generated propensity score. However, how can this be done is uncertain since the generated propensity score is based on multiple imputed datasets? Would it be OK just to average the imputed values and generated an 'averaged' imputed dataset and use this for the balance check?

Best Answer

My understanding is that you should generate individual propensity score models for each data set, then match, then estimate outcomes, then combine the estimates into one.

1) Match() in Matching accepts a user's own propensity score (include it as the X parameter in the call to Match(). matchit() in MatchIt does the same. I also recommend you try propensity score weighting; the package twang allows users to enter their own propensity scores/weights and then assess balance. The twang vignette explains how to do this and estimate a treatment effect.

2) Typically for balance assessment reporting, you assess balance on each dataset individually and then report maximum imbalance for each covariate across the imputed data sets. Do not average your imputed data sets. If across the imputed datasets the maximum imbalance of each covariates is within an acceptable range (e.g., ASMD <.1), that should be good enough evidence that you have achieved balance and can move forward.

Related Question