Would appreciate any advice on this as it is for my dissertation. When using esttab all results previously generated using eststo are shown, resulting in output table showing 90+ sets of results as I have run and altered the code a few times. Any way to only output the results generated from the most recent execution of the code (only 4 sets of results).
For context, this is hedonic pricing model.
esttab using Reg_tables_$date.rtf, re ///
stats(N r2 r2_a F p, fmt(%9.0g %10.4f)) b(%10.2f) star(* 0.10 ** 0.05 *** 0.01) ///
varwidth(25) modelwidth(7) label onecell nogaps nobaselevels compress ///
title(Regression Summary) not
For context, this is hedonic pricing model.
esttab using Reg_tables_$date.rtf, re ///
stats(N r2 r2_a F p, fmt(%9.0g %10.4f)) b(%10.2f) star(* 0.10 ** 0.05 *** 0.01) ///
varwidth(25) modelwidth(7) label onecell nogaps nobaselevels compress ///
title(Regression Summary) not
Comment