SAS中文论坛

 找回密码
 立即注册

扫一扫,访问微社区

查看: 1071|回复: 0
打印 上一主题 下一主题

ODS tips 01 不同输出目标/部分式样style的演示

[复制链接]

49

主题

76

帖子

1462

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1462
楼主
 楼主| 发表于 2003-11-12 13:51:47 | 只看该作者

ODS tips 01 不同输出目标/部分式样style的演示

ODS 的确是个好东西,不论是做报表还是做开发。

一个小示例:

*HTML file;
title 'ods demo 1';
ods html file ='demo.html';
proc print data = sashelp.class(obs=5);run;
ods html close;

*PDF file;
ods pdf file ='demo.pdf' style=SASDocPrinter;
proc print data = sashelp.class(obs=5);run;
ods pdf close;

*RTF file/excel file;
ods rtf file ='demo.rtf' style=SASDocPrinter;
ods html file ='demo.xls';
proc means data = sashelp.class maxdec=2;
    var age weight height;
run;
ods html close;
ods rtf close;
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|Archiver|SAS中文论坛  

GMT+8, 2025-1-5 19:11 , Processed in 1.197783 second(s), 20 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表