本文主要是介绍数学之路-sas备忘(13),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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 .';*执行操作系统命令;
本博客所有内容是原创,如果转载请注明来源
http://blog.csdn.net/myhaspl/
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;
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;
endsas;*退出sas;
run;
这篇关于数学之路-sas备忘(13)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!