data a;
do i=1 to 29;
x=ranuni(29);
output;
end;
format x f8.4;
run;
proc surveyselect data=a out=b method=sys sampsize=4 seed=10;
run;
proc means data=c mean std ;
var x;
output out=d (drop=_type_) mean=avg std=std;
run;
data a;
do i=1 to 29;
x=ranuni(29);
output;
end;
format x f8.4;
run;
proc surveyselect data=a out=b method=sys sampsize=4 seed=10;
run;
proc means data=c mean std ;
var x;
output out=d (drop=_type_) mean=avg std=std;
run;