博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【SAS NOTES】retain
阅读量:5095 次
发布时间:2019-06-13

本文共 1286 字,大约阅读时间需要 4 分钟。

data mysas.ifthen5;     infile 'e:\ifthen.txt' dlm='09'x firstobs=2;     input date gtone shen dong all;     retain maxgtone;          maxgtone=max(maxgtone,gtone);     retain minshen;          minshen=min(minshen,shen);run;proc print data=mysas.ifthen5;run;

result

Obs     date      gtone       shen       dong        all      maxgtone    minshen

      28    201104     526924    7565735    2230739    10323398      526924    6742289

      29    201105     537731    7561917    2263410    10363058      537731    6742289
      30    201106     556215    7479801    2280381    10316397      556215    6742289
      31    201107     582287    7530444    2323672    10436403      582287    6742289
      32    201108     627106    7309423    2296700    10233229      627106    6742289
      33    201109     673407    7171315    2264441    10109163      673407    6742289
      34    201110     701135    6982613    2211213     9894961      701135    6742289
      35    201111     743656    6686985    2141923     9572564      743656    6686985
      36    201112     791015    6533912    2146543     9471470      791015    6533912
      37    201201     847913    6675797    2096167     9619877      847913    6533912
      38    201202     867957    6562126    2063072     9493155      867957    6533912
      39    201203     931486    6610918    2087945     9630349      931486    6533912
      40    201204    1006850    6476150    2035887     9518887     1006850    6476150
      41    201205    1089899    6435717    2016858     9542474     1089899    6435717
      42    201206    1158009    6363637    2000173     9521819     1158009    6363637

retain 可以让变量在数据步中每一条记录中都保持运算。

用if then else 也可以实现类似效果。

 

转载于:https://www.cnblogs.com/colipso/archive/2013/01/24/2875203.html

你可能感兴趣的文章
nginx+tomat https ssl 部署 完美解决方案
查看>>
js动画之简单运动二
查看>>
数学情书
查看>>
Linux mint
查看>>
设计模式 ( 十三 ) 命令模式Command(对象行为型)
查看>>
鼠标滚动:mousewheel事件在Firefox采用DOMMouseScroll事件的统一处理
查看>>
笔记:常用排序算法
查看>>
二叉树
查看>>
Windows Server 2008 配置 PHP 环境
查看>>
ASP.NET AJAX(Atlas)现存的一些常见问题以及解决方案[持续更新]
查看>>
Docker Stack 部署web集群
查看>>
韵语编年之十五:2004—— 2007.【 附:《吴忠史话》----吴忠的历史大事与名人】...
查看>>
杨森翔的书法-19
查看>>
css画圆
查看>>
视图时时更新
查看>>
【PMP】财务测量指标ROI、PBP、NPV、IRR、BCR
查看>>
【Shell】Read命令
查看>>
BZOJ1061 NOI2008 志愿者招募 单纯形
查看>>
code forces 996D Suit and Tie
查看>>
PHP操作Mysql
查看>>