I create a propensity-score matched Firm-Year panel sample as follows:
where T is the treatment variable, Y is the outcome variable, Year is the year, and X1, X2 and X3 are firm characteristics that vary over time. The matching is exact for X3 and Year.
Now I want to run a staggered event study regression using the matched sample.
My question then is, as Year is already included in the propensity score matching (as an exact match), do I need to include it again (as a fixed effect) in the event study regression?
In other words, does the event study regression look like this:
or like this:
Note: kmatch and reghdfe are SSC contributed commands.
Thanks
Code:
kmatch ps T X1 X2 (Y), ematch(X3 Year) att wgenerate(W) replace
Now I want to run a staggered event study regression using the matched sample.
My question then is, as Year is already included in the propensity score matching (as an exact match), do I need to include it again (as a fixed effect) in the event study regression?
In other words, does the event study regression look like this:
Code:
reghdfe Y T [pweight=W], absorb(Firm Year)
Code:
reghdfe Y T [pweight=W], absorb(Firm)
Note: kmatch and reghdfe are SSC contributed commands.
Thanks
Comment