Hi,
I'd be really grateful for insights on the following issue.
Say I want to estimate the effects of the experience of a flood on health spending for boys versus girls aged 1 to 9. I have health spending data at the individual level for years 2011, 2014, 2016 and 2018. Around 50% of the sample experienced flooding in 2014 and 2018. I initially thought a fixed effects panel estimation as follows will be best:
health_exp and age are continuous variable, flood and male are dummies. The coefficient on the interaction will be the parameter of interest.
Upon further thinking, however, I feel the model is not correct as health spending will only occur if the child was ill. So I need a hurdle model for panel data such as xtdhreg that estimates a random effects hurdle model.
1. What is the rational for the model to be RE? Does it suit the original question I seem to ask?
2. Around 60% of the households migrated between rounds but are still in the survey. Does this make RE more suitable than FE as there may be between panel effects that need to be captured as well not just within effects?
I have read a bit too much and am confused and shall appreciate some insights.
Thank you.
I'd be really grateful for insights on the following issue.
Say I want to estimate the effects of the experience of a flood on health spending for boys versus girls aged 1 to 9. I have health spending data at the individual level for years 2011, 2014, 2016 and 2018. Around 50% of the sample experienced flooding in 2014 and 2018. I initially thought a fixed effects panel estimation as follows will be best:
Code:
xtset person_id year
Code:
xtreg health_exp i.flood##1.male age, fe vce(cluster person_id)
Upon further thinking, however, I feel the model is not correct as health spending will only occur if the child was ill. So I need a hurdle model for panel data such as xtdhreg that estimates a random effects hurdle model.
1. What is the rational for the model to be RE? Does it suit the original question I seem to ask?
2. Around 60% of the households migrated between rounds but are still in the survey. Does this make RE more suitable than FE as there may be between panel effects that need to be captured as well not just within effects?
I have read a bit too much and am confused and shall appreciate some insights.
Thank you.
Comment