Dear Community
I have a question regarding some output I obtained in Stata. Tests for equidispersion showed that I can not reject the Null hypothesis of equidispersion on a 1% significance level (of course I know this doesn't mean for sure that the data is 100% equidispersed). Looking at the data and its distribution however give additional evidence for equidispersion.
However, I wondered given we have perfect equidispersion if the results obtained by a Negative Binomial are exactly the same as for a Poisson model?
Please find below details regarding the code and output:
First, the poisson regression I used the following code
The ouptut looks as stated below: 
Additionally, the code used to test for equidispersion was:
Here the output: 
Finally, the code and the output for the Negative Binomial model:

Usually, there is some output regarding the alpha at the end of the table with confidence intervals and standard deviation. However, this is not the case here so I wondered if this might be due to equidispersion and therefore alpha = 0. Also I was not sure if in this case it is really possible that the results of Poisson and Neg. Binomial model can be exactly the same.
Thanks Carlo Lazzaro for the remarks!
Best regards,
Elio
I have a question regarding some output I obtained in Stata. Tests for equidispersion showed that I can not reject the Null hypothesis of equidispersion on a 1% significance level (of course I know this doesn't mean for sure that the data is 100% equidispersed). Looking at the data and its distribution however give additional evidence for equidispersion.
However, I wondered given we have perfect equidispersion if the results obtained by a Negative Binomial are exactly the same as for a Poisson model?
Please find below details regarding the code and output:
First, the poisson regression I used the following code
Code:
poisson totscore5 i.dn042_ i.agegr3 i.ch001_gr2 i.easy_isced1997_gr i.partner_mod2 i.iv009_rec_gr2 i.region, vce(cluster hhid6)
Additionally, the code used to test for equidispersion was:
Code:
estat gof
Finally, the code and the output for the Negative Binomial model:
Code:
nbreg totscore5 i.dn042_ i.agegr3 i.ch001_gr2 i.easy_isced1997_gr i.partner_mod2 i.iv009_rec_gr2 i.region, vce(cluster hhid6)
Usually, there is some output regarding the alpha at the end of the table with confidence intervals and standard deviation. However, this is not the case here so I wondered if this might be due to equidispersion and therefore alpha = 0. Also I was not sure if in this case it is really possible that the results of Poisson and Neg. Binomial model can be exactly the same.
Thanks Carlo Lazzaro for the remarks!
Best regards,
Elio
Comment