Announcement

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

  • Esttab / Estout / Outreg Drop All Coefficients

    Is there a way to drop all coefficients from a regression and just report R-Squared and number of observations when using esttab, estout, or outreg?

  • #2
    With estout from SSC

    Code:
    sysuse auto
    regress mpg weight disp
    esttab, drop(*) stats(N r2, lab(N "R-squared")) nonotes
    Res.:

    Code:
    . esttab, drop(*) stats(N r2, lab(N "R-squared")) nonotes
    
    ----------------------------
                          (1)   
                          mpg   
    ----------------------------
    ----------------------------
    N                      74   
    R-squared           0.653   
    ----------------------------

    Comment


    • #3
      Andrew Musau thank you so much! This exactly what I needed!

      Comment

      Working...
      X