I want to create a new dataset with only the element in the second row of the second column. Is there a way to do this? I would prefer not to use proc iml For example, I want to transform data1 to data2 data test1;
input a b;
datalines;
10 40 70
50 60 90
18 70 30
;
run;
data test2;
input c;
datalines;
60
;
run;
... View more