开发者

How do I programmatically make it so that SAS doesn't print to Results?

开发者 https://www.devze.com 2023-01-02 11:40 出处:网络
I am running some proc and using ods output FitStatistics = fs; etc to create s开发者_StackOverflowome SAS datasets from the outputs. But since I am running it a large number of times, I want to suppr

I am running some proc and using ods output FitStatistics = fs; etc to create s开发者_StackOverflowome SAS datasets from the outputs. But since I am running it a large number of times, I want to suppress the printing to Results. What's is the SAS code for doing that?


This question was asked and answered a while ago on runsubmit.com. It's like stackoverflow but just for SAS related q's.

http://www.runsubmit.com/questions/248/suppressing-results-output-with-proc-print-and-ods

Cheers Rob


How about use the codes at below:

ods _all_ close;
ods output FitStatistics = fs
0

精彩评论

暂无评论...
验证码 换一张
取 消