I want to follow a paper and I am struggling with propensity score matching. Essentially, my basic regression to analyze whether a supplier_change has an influence on the quality of a produced car is:
The three steps indicated in the paper are
For step 2) I have discovered that many use psmatch2 but I could not get the matching to work...
Also, I think I cannot combine steps 1 and 2 with psmatch because of the calculation requirements.
Help is highly appreciated!
Code:
regress car_quality supplier_change working_hours price supplier i.year i.state, vce(cluster ID)
- 1) Create propensity score of a supplier_change with all of the control variables (working_hours price supplier)
- 2) Match each treatment observation to the single closest control observation from the same year and state and a caliper distance of max. 0.1
- 3) Re-run the regression with matched sample (although other posts indicate this is problematic).
Code:
probit supplier_change working_hours price supplier predict pscore
Also, I think I cannot combine steps 1 and 2 with psmatch because of the calculation requirements.
Help is highly appreciated!
Comment