Difference between revisions of "Propensity Score Matching"

Jump to: navigation, search
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''Propensity Score Matching (PSM)''' is a quasi-experimental impact evaluation technique which attempts to estimate the effects of a treatment by matching control group participants to treatment group participants based on propensity score(predicted probability of participation based on observed characteristics). This is done to reduce the [[Selection Bias | selection bias]] that may be present in non-experimental data.
Propensity score matching (PSM) is a [[Quasi-Experimental Methods | quasi-experimental method]] in which the researcher uses statistical techniques to construct an artificial control group by [[Matching | matching]] each treated unit with a non-treated unit of similar characteristics. Using these matches, the researcher can estimate the impact of an intervention. Matching is a useful method in [[Data Analysis | data analysis]] for estimating the impact of a program or event for which it is not [[Research Ethics | ethically]] or logistically feasible to [[Randomized Control Trials | randomize]]. This page provides an overview of PSM and guidelines for implementation. 


==Read First==
*The efficacy of a PSM design depends mostly on how well the observed characters determine program participation. If the bias from unobserved characteristics are likely to be very small, PSM provides good estimates; if the bias from unobserved characteristics is large, then the estimates from the PSM can be sizably biased.
*Compute the propensity score using baseline characteristics. Note that using too many covariates to compute the propensity score may result in an exacerbated lack of common support, while using too few may violate the unconfoundedness assumption.
*<code>psmatch2</code> is a useful Stata command for implementing PSM.


== Read First ==
==Overview==


* The efficacy of a PSM design depends mostly on how well the observed characters determine program participation. If the bias from unobserved characteristics are likely to be very small, PSM provides us with good estimates and if the bias from unobserved characteristics are large, then the estimates from the PSM can be sizably biased.
PSM is a [[Quasi-Experimental Methods | quasi-experimental method]] in which the researcher uses statistical techniques to construct an artificial control group by [[Matching | matching]] each treated unit with a non-treated unit of similar characteristics. In particular, PSM computes the probability that a unit will enroll in a program based on observed characteristics. This is the propensity score. Then, PSM matches treated units to untreated units based on the propensity score. PSM relies on the assumption that, conditional on some observable characteristics, untreated units can be compared to treated units, as if the treatment has been fully randomized. In this way, PSM seeks to mimic [[Randomization in Stata | randomization]] to overcome issues of selection bias that plague non-[[Experimental Methods | experimental methods]].  


== Guidelines ==
To implement, PSM requires large samples and good data on both treated and non-treated units. Further, the data must include a sufficient number of untreated units with characteristics that correspond to those of the treated units. Finally, the data should include all relevant characteristics related to treatment participation and outcomes. Given that all characteristics relevant to treatment participation and outcomes are observable in the dataset and known by the researcher, the propensity score will produce valid matches for estimating the impact of an intervention. If unobservable characteristics exist between the treated and untreated units, however, PSM will provide biased estimates. Ultimately, PSM estimation results are only as good as the characteristics used for matching.


==Implementation==
<code>psmatch2</code> is a useful Stata command that implements a variety of PSM methods and can carry out steps 2-5 in this section. Install this command by typing <code>ssc install psmatch2</code> in Stata; find more information by typing <code>help psmatch2</code> in Stata. An overview of the PSM steps follows:
#Get data. The data must identify which units are treated and untreated, and should include all characteristics relevant to treatment participation and outcome.
#Estimate propensity score through a discrete choice model (i.e. logit, probit). The function should include all relevant covariates related to treatment participation and outcomes. The covariates should be baseline characteristics that are not affected by the treatment. Then use the predicted values from the function to generate the propensity score. Note that while including many covariates may exacerbate the “lack of common support,” or an insufficient overlap of the propensity score distributions of the treated and untreated groups, including too few covariates may violate the unconfoundedness assumption
#Restrict sample to common support. This ensures that units with the same covariate values have a positive probability of being both treated and untreated. After running <code>psmatch2</code>, run <code>psgraph, pscore(pc_pscore)</code> to visualize the distribution of units that will not be included in PSM.
#Choose and implement a matching algorithm to match untreated units to treated units (i.e. radius matching, kernel and local-linear matching, nearest neighbor matching). See [[Propensity Score Matching#Additional Resources | Additional Resources]] for more information.
#Estimate the impact of intervention with matched sample and calculate standard errors. The average difference in outcomes between treated units and their matched untreated, control units is the estimated impact of the intervention.


== Back to Parent ==
== Back to Parent ==


This article is part of the topic [[Impact Evaluation Design]].
This article is part of the topic [[Quasi-Experimental Methods]].


== Additional Resources ==
== Additional Resources ==
 
*Stuart’s [http://www.preventionresearch.org/wp-content/uploads/2011/07/SPR-Propensity-pc-workshop-slides.pdf The Why, When, and How of Propensity Score Methods for Estimating Causal Effects]
[[Category: Impact Evaluation Design]]
*Heinrich et al.’s [https://pdfs.semanticscholar.org/c1af/121ce5a7d52075722b87a5f012da83dc5502.pdf Primer for Applying Propensity Score Matching]
*The University of Wisconsin’s [https://www.ssc.wisc.edu/sscc/pubs/stata_psmatch.htm Propensity Score Matching in Stata]
*Gertler et al.’s [https://siteresources.worldbank.org/EXTHDOFFICE/Resources/5485726-1295455628620/Impact_Evaluation_in_Practice.pdf Impact Evaluation in Practice]
[[Category: Quasi-Experimental Methods]][[Category: Data Analysis]]

Latest revision as of 16:11, 17 June 2019

Propensity score matching (PSM) is a quasi-experimental method in which the researcher uses statistical techniques to construct an artificial control group by matching each treated unit with a non-treated unit of similar characteristics. Using these matches, the researcher can estimate the impact of an intervention. Matching is a useful method in data analysis for estimating the impact of a program or event for which it is not ethically or logistically feasible to randomize. This page provides an overview of PSM and guidelines for implementation.

Read First

  • The efficacy of a PSM design depends mostly on how well the observed characters determine program participation. If the bias from unobserved characteristics are likely to be very small, PSM provides good estimates; if the bias from unobserved characteristics is large, then the estimates from the PSM can be sizably biased.
  • Compute the propensity score using baseline characteristics. Note that using too many covariates to compute the propensity score may result in an exacerbated lack of common support, while using too few may violate the unconfoundedness assumption.
  • psmatch2 is a useful Stata command for implementing PSM.

Overview

PSM is a quasi-experimental method in which the researcher uses statistical techniques to construct an artificial control group by matching each treated unit with a non-treated unit of similar characteristics. In particular, PSM computes the probability that a unit will enroll in a program based on observed characteristics. This is the propensity score. Then, PSM matches treated units to untreated units based on the propensity score. PSM relies on the assumption that, conditional on some observable characteristics, untreated units can be compared to treated units, as if the treatment has been fully randomized. In this way, PSM seeks to mimic randomization to overcome issues of selection bias that plague non- experimental methods.

To implement, PSM requires large samples and good data on both treated and non-treated units. Further, the data must include a sufficient number of untreated units with characteristics that correspond to those of the treated units. Finally, the data should include all relevant characteristics related to treatment participation and outcomes. Given that all characteristics relevant to treatment participation and outcomes are observable in the dataset and known by the researcher, the propensity score will produce valid matches for estimating the impact of an intervention. If unobservable characteristics exist between the treated and untreated units, however, PSM will provide biased estimates. Ultimately, PSM estimation results are only as good as the characteristics used for matching.

Implementation

psmatch2 is a useful Stata command that implements a variety of PSM methods and can carry out steps 2-5 in this section. Install this command by typing ssc install psmatch2 in Stata; find more information by typing help psmatch2 in Stata. An overview of the PSM steps follows:

  1. Get data. The data must identify which units are treated and untreated, and should include all characteristics relevant to treatment participation and outcome.
  2. Estimate propensity score through a discrete choice model (i.e. logit, probit). The function should include all relevant covariates related to treatment participation and outcomes. The covariates should be baseline characteristics that are not affected by the treatment. Then use the predicted values from the function to generate the propensity score. Note that while including many covariates may exacerbate the “lack of common support,” or an insufficient overlap of the propensity score distributions of the treated and untreated groups, including too few covariates may violate the unconfoundedness assumption
  3. Restrict sample to common support. This ensures that units with the same covariate values have a positive probability of being both treated and untreated. After running psmatch2, run psgraph, pscore(pc_pscore) to visualize the distribution of units that will not be included in PSM.
  4. Choose and implement a matching algorithm to match untreated units to treated units (i.e. radius matching, kernel and local-linear matching, nearest neighbor matching). See Additional Resources for more information.
  5. Estimate the impact of intervention with matched sample and calculate standard errors. The average difference in outcomes between treated units and their matched untreated, control units is the estimated impact of the intervention.

Back to Parent

This article is part of the topic Quasi-Experimental Methods.

Additional Resources