SAS停止Html文件用哪个命令,SAS 9.3 Turn html back on

Hi:

I'm not sure what you want to turn back on??? You might try:

ods _all_ close;  /* closes all open destinations */

ods html;         /* reopens the cumulative HTML file with default options*/

in order to turn the cumulative HTML file back on. Or, you can close SAS, reopen SAS and make sure that the Tools-->Options-->Preferences-->Results choices are set appropriately, as described here: http://support.sas.com/documentation/cdl/en/hostwin/63047/HTML/default/viewer.htm#p0sq3tdxedxfd1n1w8... and here

Or, you can choose what I call the "full control" method, that gives you control over the location of your output and the name of the file(s) generated, by using an ODS "sandwich" explicitly. In the first example, 2 of the procedures will have their output sent to the my_two_results.htmlfile and the 3rd procedure will go to a different location and file named reportNov.html-- in this way, you know exactly how what output is being written and the location to which it is being written.

cynthia

ods _all_ close;

ods html file='c:\temp\my_two_results.html';

proc print data=sashelp.class;

run;

proc freq data=sashelp.shoes;

tables region;

run;

ods html close;

ods html file='q:\backup\reportNov.html';

proc print data=sashelp.shoes;

run;

ods html close;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值