I run the command outreg2 after an areg regression, I just want to remove R2 from the table.
I try with drop(e(r2)), drop((r2)) or drop((R-squared)) without success.
Thank you
Thank you
I try with drop(e(r2)), drop((r2)) or drop((R-squared)) without success.
Thank you
Code:
areg as_sec inter ev, absorb(rc) vce(cluster AB) outreg2 using AS, label tex alpha(0.01, 0.05, 0.1) title(Price) ctitle(sec.) replace addtext(R FE, YES, C FE, YES) addstat(Adjusted R-squared, e(r2_a),F-statistic, e(F))
Comment