Integral, Measure and Martingale
Every time I think I know what's going on, suddenly there's another layer of complications.
2017年1月29日星期日
Simple SAS codes to understand set loop and order duplicated cases.
data try;
input pid value;
datalines;
1 1
1 3
1 5
2 1
2 2
3 1
3 2
3 6
3 8
;
run;
data try2;
set try;
by pid;
episode+1;
if first.pid then episode=1;
run;
较新的博文
较早的博文
主页