rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/sas
2019-10-21 10:18:17 +02:00

14 lines
236 B
Plaintext

data sim;
do i = 1 to 100;
x1 = rand("Normal");
x2 = rand("Binomial", 0.5, 100);
output;
end;
run;
proc means data=sashelp.class;
class sex;
var height weight;
output out = mean_by_sex;
run;