Announcement

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

  • Eststo subsamle labels

    Hi!
    I would like to do a nice regression table in Latex, and want to use the command esttab and eststo. I will do 3 specifications/models for 2 different outcome variables. Thus having 6 regression columns in total. What I am trying to figure out now is to group the regressions into subsamples. Depicting each of my outcome variables separately. I have done a draft bellow of what I have in mind. Anybody have an idé how to code it?



    Specification 1 Specification 2 Specification 3
    _________________ _______________ _______________
    Outcome 1 I Outcome 2 Outcome 1 I Outcome 2 Outcome 1 I Outcome 2

  • #2
    Hey David,

    esttab is a wrapper for the more flexible estout. You can use the options of estout even if they are not stated prominently in the help file of esttab.

    Code:
    esttab m1 m2 m3 m4 m5 m6, mtitle("Test") mgroups("Group 1" "Group 2" "Group 3", pattern(1 0 1 0 1 0))
    Best,
    Sebastian

    Comment

    Working...
    X