data _2(drop= month cl _dif);
set _1;
by id month;
_dif =dif(cl);
if first.id then do;
_dif =.;
INCREASE =0;
DECREASE =0;
end;
else do;
if _dif lt 0 then INCREASE +1;
else if _dif gt 0 then DECREASE +1;
end;
if last.id then output;
run;作者: shiyiming 时间: 2003-11-10 13:52
发完帖子后发现从SAS拷贝过来的DATAT步中的语句层次没有了,阅读起来很不方便。即使我想用空格来保持层次也不行。