Hallo!
For my Project I Need to create a random list of 1 and 0. Basically the classic head or tail program.
I know it should be pretty simple but I can´t find any solution in the old Posts.
Can someone help me?
Thank you!
From here:
http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a001466748.htm
You can do:
data want; call streaminit(123); do i=1 to 1000; x=round(rand('uniform')); output; end; run;
It is called Bernolli Trail/Distribution .
data want;
call streaminit(123456789);
do i=1 to 1000;
x=rand('bern',0.5);
output;
end;
run;
proc freq data=want;
table x/missing;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.