hi!
I am a novice when it comes to DiD models so I will take all the support you can provide.
I have a model in which the dependent variable is an individual's well-being.
I have two waves of measurement.
My continuous treatment variable- the percentage of foreigners- is at the regional level.
Initially, I went with the following code:
However, after reading this presentation https://www.stata.com/meeting/german...2_Luedicke.pdf, I thought that I should also try the following code:
The results are distinct and I do not understand why. As a result, I dont know which one of the two is the correct spelling of the model.
I need to also mention that I am using Stata 15, so I cannot use didregress & the like.
I am a novice when it comes to DiD models so I will take all the support you can provide.
I have a model in which the dependent variable is an individual's well-being.
I have two waves of measurement.
My continuous treatment variable- the percentage of foreigners- is at the regional level.
Initially, I went with the following code:
Code:
xtset region xtreg y c.treat##i.post, fe vce(cluster region)
Code:
areg y i.year c.treat, absorb(region) vce(cluster region)
I need to also mention that I am using Stata 15, so I cannot use didregress & the like.
Comment