libname sastemp 'e:/sastemp/';
option user=sastemp;*指定接下来的逻辑库引用名;
page;*日志从新的一页开始;
data sales;
input id$ price;
skip 6;*日志中产生5个空行;
cards;
1 23.3
2 99.23
3 91.01
;
proc print;
run;
x 'dir .';*执行操作系统命令;
本博客所有内容是原创,如果转载请注明来源
libname sastemp 'e:/sastemp/';
option user=sastemp;*指定接下来的逻辑库引用名;
data sales;
input id$ price;
cards;
1 23.3
2 99.23
3 91.01
;
proc print;
title color=green "商品价格";*标题;
footnote "完毕";*脚注;
run;
dm log 'clear' output;*清除日志窗口,并使结果输出窗口成为活动窗口;
endsas;*退出sas;
run;