data a;
input x1 x2 x3 x4;
cards;
1 2 3 .
. 2 5 3
2 . 6 4
4 3 2 5
;
run;
data b;
set a;
y=catx('.',of x1-x4);
array x[*] x1-x4;
do i=1 to dim(x);
x[i]=input(scan(y,i),best12.);
end;
keep x1-x4;
run;


雷达卡




京公网安备 11010802022788号







