找回密码
 注册
查看: 3660|回复: 0

跟版主crackman读SAS程序(18)-如何查看SAS附带的输出结果样式

[复制链接]
发表于 2010-8-27 16:23:22 | 显示全部楼层 |阅读模式


%let path=c:\temp;  
%macro showstyle(style);
ods html path="&path"(url=none) file="&style..html"
    contents=temp(notop nobot) frame="frame.html" style=&style;
ods proclabel "Style name";
proc print data=sashelp.class contents="Styles.&style";
run;
ods html close;
%mend;
ods path work.templat(update) sashelp.tmplmst(read);
filename temp "&path\contents.html" mod;
ods html path="&path"(url=none) contents=temp(nobot);
ods html exclude stats;
ods output stats=styles(where=(type ne "Dir"));
proc template;
   list styles;
run;
proc sort data=styles;
   by path;
run;
data one;
   set styles;
   by path;
   if first.path then
      call execute('%showstyle('||path||')');
run;
data _null_;
   file temp;
   put "</body>";
   put "</html>";
run;
ods path reset;

这里有几个地方值得学习
1.PROC TEMPLATE列出了所有SAS附带的输出结果展示的样式
2.用CALL EXECUTE调用宏程序。
3.宏程序里面的主要的是ODS参数的设置,以及最后对ODS PATH RESET。
回复

使用道具 举报

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

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-12-4 01:30 , Processed in 0.021009 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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