rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/sas

14 lines
236 B
Plaintext
Raw Normal View History

2019-10-21 08:18:17 +00:00
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;