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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.