Announcement

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

  • quietly global

    Running a loop in Stata...I often put quietly before several commands. Is there a way to suppress output to the results window for a group of commands, or to suppress output to the results window until further notice?

  • #2
    Well, you can entirely suppress output from a do file by -run-ning it instead of -do-ing it.

    You can suppress output for a group of commands by:
    Code:
    quietly {
        group of commands
    }
    I don't know of a way to do it "until further notice."

    Comment

    Working...
    X