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?
-
Login or Register
- Log in with
sysuse auto regress mpg weight disp esttab, drop(*) stats(N r2, lab(N "R-squared")) nonotes
. esttab, drop(*) stats(N r2, lab(N "R-squared")) nonotes ---------------------------- (1) mpg ---------------------------- ---------------------------- N 74 R-squared 0.653 ----------------------------
Comment