BookmarkSubscribeRSS Feed
riccardo88
Calcite | Level 5

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!

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

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;
Ksharp
Super User

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;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1071 views
  • 4 likes
  • 3 in conversation