Epi/bio Peeps

This forum made possible through the generous support of SDN members, donors, and sponsors. Thank you.

emanresu

Senior Member
7+ Year Member
15+ Year Member
Joined
Nov 24, 2003
Messages
185
Reaction score
0
Ever notice how ?quick-pick? numbers look as if they?re only ?categorically? random in groups? Like for example you get 3 18 25 39 from numbers 1 to 40. Well, I wrote a SAS program that spits out random lottery numbers. You?re all free to use it, and if you win anything, give me at least 10% for my medical education. Otherwise, your family will be cursed.

* POWERBALL RANDOM DIGIT GENERATOR
* PROGRAMMER WOODY
* i=random lottery numbers
* n=powerball;

options nodate nonumber linesize=80 pagesize=52;

data money;
do i=1 to 53;
x=ranuni(0);

output;
end;

do n=1 to 42;
p=ranuni(0);

output;
end;

proc sort; by x p; run;
proc rank; var x ; run;
proc print; var i n x p; run;

Members don't see this ad.
 
MY FREAKIN UPDATE DOESNT WORK,...SO I CANT USE IT :(
 
Relax.

All you need to do is turn back your computer's date.
 
Top