Announcement

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

  • Export table using esttab

    Hello,

    I'm trying to export my regression results using esttab. For some of the variables, the output is as shown in the image. If I just want to export the Female coefficient for the last interaction term, how can I do that? I'm not able to figure it out as I have three Female coefficients.
    Attached Files

  • #2
    estout is from SSC, as you are asked to explain in FAQ Advice #12. You need the -keep()- option. Note that the -coeflegend- option of the estimation command will tell you how to refer to the coefficients.

    Code:
    esttab, keep(*.female#c.kharif_*s) nobaselevels

    Comment


    • #3
      Thank you, Andrew, The -coeflegend- option helps.

      Comment

      Working...
      X