Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Using outreg2 with esttab

    Hello Statlist,

    I am trying to export my regression estimates for four related models which I stored using the eststo command. Now I would like to export those models using the outreg2 command. I am running into a problem exporting the table as the output is hard to read. My code is as follows:

    outreg2 [Full Full_No_Outlier Pre_Katrrina Post_Katrina] using myfile, stats(coef aster se beta), replace

    However, the betas and significance stars show up under the coef and standard errors---is there a way to display the betas in a column beside the regression coefficients and place the sig stars to the right of the coefficients?

    I've added a screenshot below so you can see what is happening. I would like the current Notes column to have the betas and the aster to stay inside the column alongside the coefficient.
    Click image for larger version

Name:	Screenshot 2020-05-19 15.21.12.png
Views:	2
Size:	377.9 KB
ID:	1554055
    Attached Files
    Last edited by Davia Downey; 19 May 2020, 13:26.

  • #2
    Maybe -sideway-?

    Code:
    outreg2 [Full Full_No_Outlier Pre_Katrrina Post_Katrina] using myfile, sideway stats(coef aster se beta), replace

    Comment


    • #3
      Thanks, I’ll try that and see if it works. Will report back.

      Comment

      Working...
      X