0 votes
in Software Defined Networking by
How do I create a data set with observations=100, mean 0 and standard deviation 1?

1 Answer

0 votes
by
data readin;

do i=1 to 100;

     temp=0 + rannor(1) * 1;

     output;

end;

run;

proc means data=readin mean stddev;

var temp;

run;
...