data b;
set a;
by subjidvisit conc outcome;
retaintemp;
iffirst.visit then temp = outcome;
else ifoutcome > .Z then temp = outcome;
else do;
outcome= temp;
end;
run;
proc print data=b;
请问 其中 outcome> . Z 是什么意思?
还有为什么要用DO循环?
请注明:姓名-公司-职位
以便审核进群资格,未注明则拒绝
horace_chen 发表于 2016-4-7 14:00 1、.A .B .C–.Z ._ 用来标识数值型字段缺失值,有时候用.I表示正无穷,.M表示负无穷; 2、如果排序,顺序 ...