欢迎投稿

今日深度:

数学之路-sas备忘(13),之路-sas备忘13

数学之路-sas备忘(13),之路-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;


dm  log 'clear' output;*清除日志窗口,并使结果输出窗口成为活动窗口;
endsas;*退出sas;
run;


www.htsjk.Com true http://www.htsjk.com/shujukunews/7134.html NewsArticle 数学之路-sas备忘(13),之路-sas备忘13 libname sastemp 'e:/sastemp/'; option user=sastemp;*指定接下来的逻辑库引用名; page;*日志从新的一页开始; data sales; input id$ price; skip 6;*日志中产生5个空行; car...
评论暂时关闭