Hi everyone,
I'm trying to estimate the effect of car plant closures on affected workers' income and wages, by comparing outcomes between car plant workers and similar unaffected workers in other manufacturing industries in a DID framework. To ensure that I am comparing workers in similar occupations in the treatment and control groups, I want to match these workers based on their occupation codes and age, prior to running DID models.
I am unsure how to proceed with propensity score matching. I was thinking of using the user-contributed 'psmatch2' command for this purpose. My initial code would be:
were treat=1 for car industry workers and =0 for other manufacturing workers and occ refers to the occupation code.
How would I proceed after this? Would I limit the DID regressions to observations for which there is common support (_support==1)? Or do I need to consider the estimate propensity scores, using the _pscore variable generated by Stata? My current DID regression is as follows:
where treat08-treat20 are indicator variables equal to one if the individual was in the treated group in the particular year.
Would I just add in a condition to this to limit the sample to those matched based on the matching exercise? Relatedly, I'm also unsure of which option to use, among the many matching options available under psmatch2.
Any guidance would be much appreciated. Unfortunately I am unable to share the data which is confidential.
Many thanks.
Ashani
I'm trying to estimate the effect of car plant closures on affected workers' income and wages, by comparing outcomes between car plant workers and similar unaffected workers in other manufacturing industries in a DID framework. To ensure that I am comparing workers in similar occupations in the treatment and control groups, I want to match these workers based on their occupation codes and age, prior to running DID models.
I am unsure how to proceed with propensity score matching. I was thinking of using the user-contributed 'psmatch2' command for this purpose. My initial code would be:
Code:
psmatch2 treat occ age, out(income wage) common
How would I proceed after this? Would I limit the DID regressions to observations for which there is common support (_support==1)? Or do I need to consider the estimate propensity scores, using the _pscore variable generated by Stata? My current DID regression is as follows:
Code:
xtreg income i.year treat08-treat20, fe i(id) r
Would I just add in a condition to this to limit the sample to those matched based on the matching exercise? Relatedly, I'm also unsure of which option to use, among the many matching options available under psmatch2.
Any guidance would be much appreciated. Unfortunately I am unable to share the data which is confidential.
Many thanks.
Ashani
Comment