Announcement

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

  • Storing regression e() raw output and using later for esttab style tables in console

    I am trying to figure out if there is a way to store regression output to a file (rather than in memory), such that I can then read the estimates into STATA later on and easily view a clean, esttab-style table in console. Essentially, I am running 300+ regressions and am trying to figure out the best way to go about reviewing results from some of them without having to open a file outside of Stata (e.g., having to open a CSV in Excel or a text file in Notepad). I realize that I could import the saved text file or CSV into STATA afterwards and view browser, but I was hoping there may be something cleaner. I have in mind something like estout but instead of storing e() results in memory (which has a limit), it would allow me to store the raw output to a directory in the same data structure that estout itself reads in the results. Then I would just feed estout the raw e() results saved and it would spit out them into console in its usual style. Also, I only need this for reviewing the results - I do not need postestimation data. Any ideas?

  • #2
    estimates save or the (IMO superior) estread / estwrite from Ben Jann.

    https://github.com/benjann/estwrite

    Comment


    • #3
      estread / estwrite works great. Thank you, Bert!

      Comment

      Working...
      X