Hi,
I have data of like 10k observation where each respondents have answered how many days a week ("never", "less than once a week", "1-2", "3-4", "5-7") they would consume meat if the tax increases in steps by 1eur/kg (0-10eur/kg). So 11 observations per individual. How do I best examine this in stata? If I just do a pooled ols, my data will be biased I suppose? Is the best approach to set the panel variable to the id of each respondents, or to just cluster the standard errors?
I.e., what is preferred?
reg amount tax age education income etc., r
reg amount tax age education income etc., vce(cluster id)
xtset id
xtreg amount tax age education income etc., r
xtreg amount tax age education income etc., re
Or are there other alternatives that is better?
Thanks!
(And yes I should use e.g., an ordered probit model in the end, but just want to solve the this problem first
)
I have data of like 10k observation where each respondents have answered how many days a week ("never", "less than once a week", "1-2", "3-4", "5-7") they would consume meat if the tax increases in steps by 1eur/kg (0-10eur/kg). So 11 observations per individual. How do I best examine this in stata? If I just do a pooled ols, my data will be biased I suppose? Is the best approach to set the panel variable to the id of each respondents, or to just cluster the standard errors?
I.e., what is preferred?
reg amount tax age education income etc., r
reg amount tax age education income etc., vce(cluster id)
xtset id
xtreg amount tax age education income etc., r
xtreg amount tax age education income etc., re
Or are there other alternatives that is better?
Thanks!
(And yes I should use e.g., an ordered probit model in the end, but just want to solve the this problem first

Comment