Announcement

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

  • Problem when exporting regression tables via smlc to pdf

    Hi,

    i have calculated a few regressiuóns in stata and have saved everything in a log file (smlc). I now want to convert this into a pdf using the following command:

    translate data_log.smcl data_log.pdf, replace

    When I open the pdf, regression tables are displayed wrong. The confidence interval is split in half. The second number of the interval is shown first (on the left instead of being the last number on the right).

    I am happy for any help!

    Thanks

  • #2
    Yes, this is a commonly encountered problem because regression tables are often too wide to fit within the default margins the -translate- uses to create PDF's. Try this:

    Code:
    translate data_log.smcl data_log.pdf, replace lmargin(0.5) rmargin(0.5)
    I expect you will get a PDF with narrow enough margins to hold your results.

    Comment


    • #3
      Thank you so much. It worked

      Comment

      Working...
      X