Dear Statalists,
I am currently struggling with a STATA issue regarding negative binomial panel regression with fixed effects. I noticed that literature in this respect is very very limited in the internet, which is why decided to post the issues here.
I have a panel data set of 50 states in the US over 10 years. The dependent variable is the number of new_firms per year and state, covariates are for example bank concentration, vc-firms and as a control GDP growth (all per state and year). Plus, I want to add state and year fixed effects. As "new firms" is a count with overdispersion, I choose a negative binomial regression. Overall I want to find out how the covariates affect the creation of new_firms.
To the best of my knowledge and research in the statalist forums, I came to notice that there are several options to regress.
Option 1: xtnbreg, fe such as:
Option 2: nbreg with dummy vectors
My questions:
Best regards,
Korhan
I am currently struggling with a STATA issue regarding negative binomial panel regression with fixed effects. I noticed that literature in this respect is very very limited in the internet, which is why decided to post the issues here.
I have a panel data set of 50 states in the US over 10 years. The dependent variable is the number of new_firms per year and state, covariates are for example bank concentration, vc-firms and as a control GDP growth (all per state and year). Plus, I want to add state and year fixed effects. As "new firms" is a count with overdispersion, I choose a negative binomial regression. Overall I want to find out how the covariates affect the creation of new_firms.
To the best of my knowledge and research in the statalist forums, I came to notice that there are several options to regress.
Option 1: xtnbreg, fe such as:
Code:
xtset state year xtnbreg new_firms bank_concentration vc_firms GDP_growth i.year
Option 2: nbreg with dummy vectors
Code:
xtset state year nbreg new_firms bank_concentration vc_firms GDP_growth i.state i.year
- Are these commands and models correct in general?
- I am not sure if I need a conditional or unconditional model. I found out that this may play a role and I am not even sure which Option delivers unconditional or conditional models. I searched for a while and did not find any helpful resource to solve this by myself. Would you suggest to use a unconditional model? How would I command this in STATA?
- Also I found a study of Allison, stating "This paper demonstrates that the conditional negative binomial model for panel data, proposed by Hausman, Hall, and Griliches (1984), is not a true fixed-effects method. This method which has been implemented in both Stata and LIMDEP-does not in fact control for all stable covariates. " This may somehow be overcome by using nbreg and creating the dummy vectors manually. But I am not sure if this actually the case. Does this change anything regarding the questions before?
Best regards,
Korhan
Comment