Announcement

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

  • Difficulty creating descriptive statistic reports from Stata outputs.

    Hello!

    I'm working on creating some Stata code to create descriptive stats for a survey and put it into a document (word, pdf, etc. - doesn't really matter as long as it looks presentable). The three main commands I'm using are:
    -graph bar
    -tabstat
    -tab [string variable]

    I tried to use "putpdf/putdox" commands to put the outputs into a document, but it only accepts tables using the table or dtable commands. Is there a way to put the outputs from tabstat and tabulate of a string variable into pdf, word, etc. with Stata commands? Or is there a better way to create a presentable report from Stata outputs from these commands?

    Thank you!


  • #2
    try asdoc (ssc install asdoc)

    Comment


    • #3
      Also, see estout from SSC.

      Code:
      ssc install estout, replace
      Examples here: http://repec.org/bocode/e/estout/estpost.html

      Comment

      Working...
      X