Dear All,
I am estimating a DiD model, and I would like to examine if treatment has different effects across genders. Do you know how I can do it?
My baseline regression is as such:
Where Y is my outcome of interest and T is my post treatment dummy.
How do I examine the difference in effect across subgroups? Is is as simple as adding the interaction term and the control as such?
where G is a dummy for gender? Or is this the wrong approach?
Also consider that I have a staggered design, hence I am also estimating an event plot as such:
How to I include the interaction in this model?
I am aware about the new DiD literature, and the problem of using TWFE estimation, but I do not think the new estimators allow for interactions. is this correct?
Thanks in advance for your suggestions
Best
I am estimating a DiD model, and I would like to examine if treatment has different effects across genders. Do you know how I can do it?
My baseline regression is as such:
Code:
************ *** TWFE *** ************ reghdfe Y T, absorb(id time) cluster(id)
How do I examine the difference in effect across subgroups? Is is as simple as adding the interaction term and the control as such?
Code:
************ *** TWFE *** ************ reghdfe Y i.T i.T#i.G i.G, absorb(id time) cluster(id)
Also consider that I have a staggered design, hence I am also estimating an event plot as such:
Code:
reghdfe Y L_T* F_T*, absorb(id time) cluster(id)
I am aware about the new DiD literature, and the problem of using TWFE estimation, but I do not think the new estimators allow for interactions. is this correct?
Thanks in advance for your suggestions
Best
Comment