I want to ask for help with the following issue that I am facing with this data set. I want to analyze the impact of a drought on the tariff level of water-regulated and unregulated firms. The drought happened in 2014, meaning the treatment would start this year. Moreover, the treated group is the firms that are regulated, and the control group is the unregulated firms. Therefore, I am running the following command:
Then, I got the following out:

I want to test for the parallel trend assumption. Thus, I ran the following command:
Then, I obtained the following graphs:

My main issue is that the command fixed the horizontal line one year (ano) before the treatment, which is why it was in 2013. The treatment (drought) occurred in 2014, but the tariff was already increased in 2014 in response to the exogenous shock. Therefore, the difference in the tariff level between the treated and not treated groups starts in the year of the treatment and not one year before (2015). My doubt is: in this setup, would the diff-in-diff approach be valid? If I had monthly data, I would have a different pattern in the graph as I could use the exact month of the drought as the treatment timing. Nevertheless, I do not have it.
Code:
xtdidregress (tarifa $controles) (did), group(id) time(ano)
I want to test for the parallel trend assumption. Thus, I ran the following command:
Code:
estat trend plots
My main issue is that the command fixed the horizontal line one year (ano) before the treatment, which is why it was in 2013. The treatment (drought) occurred in 2014, but the tariff was already increased in 2014 in response to the exogenous shock. Therefore, the difference in the tariff level between the treated and not treated groups starts in the year of the treatment and not one year before (2015). My doubt is: in this setup, would the diff-in-diff approach be valid? If I had monthly data, I would have a different pattern in the graph as I could use the exact month of the drought as the treatment timing. Nevertheless, I do not have it.
Comment