I have some csdid code. Adding dummy controls leaves the coefficients and absolutely unchanged.
Why?
Is it merely that the controls are entirely uncorrelated with the event? pwcorr says that this is very much not the case.
The two lines of code that produce the identical output are:
(Yes I know that csdid2 is faster. Yes I get the same outcome with both csdid and csdid2)
Why?
Is it merely that the controls are entirely uncorrelated with the event? pwcorr says that this is very much not the case.
The two lines of code that produce the identical output are:
Code:
csdid cbirths, time(birthyr) ivar(countynhg) gvar(dtcsl) notyet agg(event) cluster(stateicp)
Code:
csdid cbirths clr con, time(birthyr) ivar(countynhg) gvar(dtcsl) notyet agg(event) cluster(stateicp)
Comment