I currently have the following codes to export negative binomial regression results to excel:
nbreg $reg1 estimates store m1, title(DV=KEYWORDS)
nbreg $reg1, irr estimates store m2, title(DV=KEYWORDSPOST)
estout m1 m2, cells(b(star fmt(3)) se(par fmt(2)))
legend label varlabels(_cons Constant)
However, when i run these codes, I am only getting the m1 output with no incidence ratio coefficients. I was wondering if there is a way to export one column showing non-irr results and another column next to each other showing irr results.
Thank you,
nbreg $reg1 estimates store m1, title(DV=KEYWORDS)
nbreg $reg1, irr estimates store m2, title(DV=KEYWORDSPOST)
estout m1 m2, cells(b(star fmt(3)) se(par fmt(2)))
legend label varlabels(_cons Constant)
However, when i run these codes, I am only getting the m1 output with no incidence ratio coefficients. I was wondering if there is a way to export one column showing non-irr results and another column next to each other showing irr results.
Thank you,

Comment