Hello all
I have a repeated cross-section of districts. Each district has several households (fresh sample selected every year). The treatment is given at district level. I am using -csdid- (ssc install drdid, ssc install csdid) to estimate the treatment effects.
My baseline regression is
I now want to include state-year fixed-effects as a robustness check.
I tried the following:
but everything got omitted.
Is there a way to implement this? I read the related threads but couldn't find a convincing answer.
I have a repeated cross-section of districts. Each district has several households (fresh sample selected every year). The treatment is given at district level. I am using -csdid- (ssc install drdid, ssc install csdid) to estimate the treatment effects.
My baseline regression is
Code:
csdid `outcome' `covariates' [weight=hh_mult], time(year) gvar(gvar) cluster(distID) long
I tried the following:
Code:
csdid `outcome' `covariates' i.stateID#i.year [weight=hh_mult], time(year) gvar(gvar) cluster(distID) long
Is there a way to implement this? I read the related threads but couldn't find a convincing answer.

Comment