Announcement

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

  • how to supress the line breaking for command "esttab"

    Code:
    clear
    sysuse auto
    eststo clear
    eststo: reg price mpg rep78 foreign weight if foreign ==1
    esttab,addnote(,clustered at level)
    I want to supress the breaking line between "parentheses" and ",clustered" in the example, how to do this? Thanks a ton!
    Note: esttab can be installed using "ssc install esttab"

  • #2
    It seems no easy solution unless you put it explicitly:
    Code:
    esttab, nonotes addnote("t statistics in parentheses, clustered at level" "* p<0.05, ** p<0.01, *** p<0.001")

    Comment

    Working...
    X