码迷,mamicode.com
首页 > 其他好文 > 详细

数学之路-sas备忘(11)

时间:2015-03-15 23:03:51      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:大数据   sas   

data heartemp;
   set Sashelp.Heart;
    if BP_Status=‘Normal‘ then delete;*血压正常的不写入数据集,drop排除变量,delete排除观测;
   keep status sex  Weight_Status BP_Status;
   rename BP_Status = Bloodpressure;
   run;
proc print data= heartemp (obs=10);
run;
data mytemp;
    input x y;
z=x+y;
/*分别统计奇偶数,evennumber+1完成累加*/
if mod(z,2)=0 then evennumber+1;
else oddnumber+1;
cards;
12 55
68 6
8 9
788 999
114 86 
28 97 
38 67 
48 97
78 234
;
run;
proc print;

run;

本博客所有内容是原创,如果转载请注明来源

http://blog.csdn.net/myhaspl/


技术分享

数学之路-sas备忘(11)

标签:大数据   sas   

原文地址:http://blog.csdn.net/myhaspl/article/details/44281509

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!