Hi everyone,
I am studying a state-level policy with staggered adoption (panel data: county*industry*year). My main question is not the impact of the policy but whether the policy effect varies with a baseline, pre-determined covariate (Z_c), which is continuous and measured at the county level, and I would like to avoid splitting the sample into low/high groups.
I am considering using jwdid and estimating heterogeneity via interactions of event-time indicators with Z_c.
My questions are:
1. If I use the following code,
will I have to use the
at every level of Zc to get the event study estimates? And is this even valid to interpret these coefficients as how treatment effect varies with Zc?
2. If the above is the correct way to do this, should I test for differential pre-trends in the same way?
3. I do want test if this relationship varies by industry for which I have three industry levels. Should I run three separate regressions or have 2 covariates?
I am studying a state-level policy with staggered adoption (panel data: county*industry*year). My main question is not the impact of the policy but whether the policy effect varies with a baseline, pre-determined covariate (Z_c), which is continuous and measured at the county level, and I would like to avoid splitting the sample into low/high groups.
I am considering using jwdid and estimating heterogeneity via interactions of event-time indicators with Z_c.
My questions are:
1. If I use the following code,
Code:
jwdid y Z_c , ivar(county_ind) tvar(year) gvar(g_state) ///
cluster (state)
Code:
estat event , orestriction(Z_c=="")
2. If the above is the correct way to do this, should I test for differential pre-trends in the same way?
3. I do want test if this relationship varies by industry for which I have three industry levels. Should I run three separate regressions or have 2 covariates?

Comment