如何以编程方式使 SAS 不打印到结果?

发布于 2024-09-03 15:03:06 字数 105 浏览 1 评论 0原文

我正在运行一些 proc 并使用 ods 输出 FitStatistics = fs;等从输出创建一些 SAS 数据集。但由于我运行它很多次,我想禁止打印到结果。执行此操作的 SAS 代码是什么?

I am running some proc and using ods output FitStatistics = fs; etc to create some 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

身边 2024-09-10 15:03:06

这个问题不久前在 runsubmit.com 上被问到并得到了回答。它类似于 stackoverflow,但仅适用于 SAS 相关的 q。

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

干杯

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

终难遇 2024-09-10 15:03:06

如何使用下面的代码:

ods _all_ close;
ods output FitStatistics = fs

How about use the codes at below:

ods _all_ close;
ods output FitStatistics = fs
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文