I am trying to run a Zero-Truncated Negative Binomial Regression with the attached data. The code I used is down below. But it is not converging. What could be the problem? My stata version is 14.2
I had this working but I seem not to be confident with the results considering the observations reported.
Code
How do i go about it or resolve it. The picture below shows the result of the just above code. I have also attached the data used (Data_2.dta)
Code:
tnbreg PPE_tot Sex Age Educ_2 Educ_3 Educ_4 certification Off_farm_income live_in_farm Exp_AGRIC ProdVal_scale REGION2 REGION3 HHsz Cooperative Mines Cred_req Landsize_ha size_type if PPE_tot!=0 , vce(robust) tnbreg PPE_tot Sex Age Educ_2 Educ_3 Educ_4 certification Off_farm_income live_in_farm Exp_AGRIC cereals forage fruit_tree hoticulture_crop industrial_crop legumes_crop other_crop root_crop REGION2 REGION3 HHsz Cooperative Mines Cred_req Landsize_ha size_type if PPE_tot!=0 , vce(robust)
I had this working but I seem not to be confident with the results considering the observations reported.
Code
Code:
tnbreg PPE_tot Sex Age Educ_2 Educ_3 Educ_4 certification Off_farm_income live_in_farm Exp_AGRIC total REGION2 REGION3 HHsz Cooperative Mines Cred_req Landsize_ha size_type if PPE_tot>0 , vce(robust)

Comment