Announcement

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

  • esttab - position of R^2

    I using esttab to produce a neat latex file:

    Code:
    esttab mc_main_ss_1c mc_main_ss_2c mc_main_ss_3c mc_main_ss_4c mc_main_ss_5c mc_main_ss_6c using "PopDen_MC_main_ss.tex", replace ///
    star(* 0.10 ** 0.05 *** 0.01) noconstant drop(_cons `main_controls' `all_controls') r2 ///
    $scalar_1 ///
    nonotes noomitted noobs label se
    This gives my outputs and after that R^2, observations and F-stat (the last two were codes with scalars). How can I code this, so that my R^2 comes at last?

    Thank you in advance!

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

    Code:
    help esttab

    Comment

    Working...
    X