打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
(10)[转载]SAS输出结果保存为Word、PDF、HTML




保存为Word文件:





data a;

input x y@@;

cards;

1 2

3 4

3 5

6 7

;

run;

options nodate nonumber;

ods rtf file='d:name.doc';

proc reg data=a;

model y=x;

run;

ods rtf close;



 



 





 



保存为PDF文件:

data a;

input x y@@;

cards;

1 2

3 4

3 5

6 7

;

run;

ods printer pdf file ='odsprinter.pdf';

proc reg data=a;

   model y = x;

run;

ods printer close;



 



 



保存为HTML文件:

ods html file ='d:new.html';

proc means data=sasuser.score;

var math;

title '数学成绩';

run;

ods html close;

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
SAS系列15:SAS数据可视化结果输出
PDF转换器
SAS:将proc步的输出导出为数据集
Template过程的简单而方便的应用
浅谈PDF转换器
PDF 文件处理
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服