Dear Statalist,
I am using a difference-in-differences (DID) set-up in a monthly panel to estimate the effect of a particular treatment on bond spreads at the country level. More specifically, I am estimating
or, equivalently, using factor variables:
where 'treat' is a dummy that equals 1 for the treated countries, 'post' is a dummy that equals 1 for all post-treatment months, 'treat_post' is their interaction, 'covars' is a set of time-varying control variables, and 'countryid' is the country identifier (and panel unit).
I have two questions:
1) Does such an estimation makes sense if the number of treated countries is very small, i.e., with only three treated countries or even one single treated country? I have a further 16 non-treated countries in my sample. The time dimension of my dataset is much larger, with about 50 pre-treatment months and about 70 post-treatment months.
2) If this estimation indeed makes sense (even if only under strong assumptions), is it correct to interpret the coefficient on the interaction variable as the 'average' treatment effect (on the treated) over all post-treatment months?
Many thanks in advance for your guidance.
Best,
Dennis
I am using a difference-in-differences (DID) set-up in a monthly panel to estimate the effect of a particular treatment on bond spreads at the country level. More specifically, I am estimating
Code:
xtreg spread treat_post covars i.month, fe vce(cluster countryid)
Code:
xtreg spread 1.treat#1.post covars i.month, fe vce(cluster countryid)
I have two questions:
1) Does such an estimation makes sense if the number of treated countries is very small, i.e., with only three treated countries or even one single treated country? I have a further 16 non-treated countries in my sample. The time dimension of my dataset is much larger, with about 50 pre-treatment months and about 70 post-treatment months.
2) If this estimation indeed makes sense (even if only under strong assumptions), is it correct to interpret the coefficient on the interaction variable as the 'average' treatment effect (on the treated) over all post-treatment months?
Many thanks in advance for your guidance.
Best,
Dennis
Comment