Announcement

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

  • Specify e(title) to feed to etable

    With the option `column(title)` etable is supposed to use the model titles as column headers:
    Code:
    etable, estimates(model1 model2 model3 model4) column(title)
    But how do I specify these e(title)?

    I tried with this but it doesn't work:
    Code:
    regress satis i.(procedure month hospital), vce(cluster hospital)
    estimates store model4, title("regress")

  • #2
    the option column(title) selects the command title as the column header, which for regress is "Linear regression."

    Comment


    • #3
      ok, how can I customize the column headers with a custom string?

      Comment


      • #4
        For future reference, it was

        estimates title: areg

        Comment


        • #5
          I did it
          Code:
          collect label levels etable_title 1 H1 2 H2a 3 H2b 4 H3b 5 H3c, modify
          Then call etable with the option column(title).

          Comment

          Working...
          X