Announcement

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

  • esttab adding two rows with refcat

    Hi Everyone,

    I would like to add two extra rows to the reported table, one for the existence of fixed effects and the other one for showing clustering standard errors. I have added my sample code below. I can only add the first row, which is "Car origin fixed effect" in my example. Is there a way to add the second row at the bottom? Thank you.

    sysuse auto.dta, clear
    eststo:regress price weight trunk i.foreign, cluster(rep78)
    esttab, se label ar2 compress replace nonumber b(2) mtitles("\shortstack{Industry Adjusted\\Investment Growth}") star(* 0.10 ** 0.05 *** 0.01) keep(weight trunk _cons) refcat(_cons "Car origin fixed effect" _cons "Clustering", below label($\checkmark$))

  • #2
    estout is from SSC, as you are asked to explain (FAQ Advice #12). Use the -indicate()- option instead. See

    Code:
    help estout

    Comment

    Working...
    X