Announcement

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

  • esttab titles

    I am using Stata 15. Suppose I type:

    webuse womenwk
    heckman wage educ age, select(married children educ age)
    esttab

    How do I change the titles produced in esttab ("select" and "/") to something more informative?

    I import the table automatically into Latex, so I would like to be able to change the titles in the do file.

    Thanks!

  • #2
    Try this:

    Code:
    webuse womenwk
    heckman wage educ age, select(married children educ age)
    esttab, eqlabels("AAA" "BBB" "CCC")

    Comment


    • #3
      Exactly what I was looking for. Thanks Dimitriy!

      Comment

      Working...
      X