Hi!
My and my thesis partner have encountered some problem with our panel data regression and would really appreciate some help / guidance.
We are evaluating a property tax reform and have downloaded panel data for the entire population affected by the reform, before and after the reform.
Our problem is to find a proper regression model.
Our independent variables that we want to evaluate are income-level(discrete variable from 1-26), geographical region(discrete variable from 1-21), age-groups(discrete variable from 1-3) and gender(dummy variable).
For example, we want to evaluate whether the income-level had an significant impact on the size of the change tax payments (which is the dependent variable) due to the reform.
The problem is that our independent variables of interest all are time invariant. This makes the fixed effects model not applicable since there are no variance within the independent variables of interest. Neither the random effects model seems like a good way to go since our data not is a sample but the entire population of interest.
One solution might be to use interaction terms between the independent variables of interest and a dummy for the time (which is 0 for the time before the reform and 1 after the reform).
This works in Stata but it don't seem like a good model since it still is the fixed effect model, which isn't really applicable to time invariant variables.
If someone can help us out with this problem it would help us a lot.
Thanks!
My and my thesis partner have encountered some problem with our panel data regression and would really appreciate some help / guidance.
We are evaluating a property tax reform and have downloaded panel data for the entire population affected by the reform, before and after the reform.
Our problem is to find a proper regression model.
Our independent variables that we want to evaluate are income-level(discrete variable from 1-26), geographical region(discrete variable from 1-21), age-groups(discrete variable from 1-3) and gender(dummy variable).
For example, we want to evaluate whether the income-level had an significant impact on the size of the change tax payments (which is the dependent variable) due to the reform.
The problem is that our independent variables of interest all are time invariant. This makes the fixed effects model not applicable since there are no variance within the independent variables of interest. Neither the random effects model seems like a good way to go since our data not is a sample but the entire population of interest.
One solution might be to use interaction terms between the independent variables of interest and a dummy for the time (which is 0 for the time before the reform and 1 after the reform).
Code:
xtreg y t*i.x1 t*i.x2 t*i.x3 t*i.x4, fe
If someone can help us out with this problem it would help us a lot.
Thanks!
Comment