Hi all,
I am trying to read the following lines with observations seperated by commas and missing values.
Is it possible to use the dlm option and dsd in the input statement ?
data test1;
input n1 n2 n3 dlm =',' option ='dsd';
datalines;
23,34,345
23,4,45
2,3,5
3,4,545
345,,345
;
run;
proc print data = test1;
run;
I am trying to read the following lines with observations seperated by commas and missing values.
Is it possible to use the dlm option and dsd in the input statement ?
data test1;
input n1 n2 n3 dlm =',' option ='dsd';
datalines;
23,34,345
23,4,45
2,3,5
3,4,545
345,,345
;
run;
proc print data = test1;
run;