A quick overview of the random number functions is here: Using Random-Number Functions and CALL Routines
Links to the documentation of the different functions can be found in the navigation pane.
Basically, each function provides its own algorithm, and it is up to the user which function (and therefore algorithm) she employs.
You should post it at IML forum.
I remembered Rick said before.
Old rand function like : ranuni(), rannor().... are using linear congruential generator.
while the new rand function RAND() is using Mersenne twister.
KSharp is referring to this article: "Six reasons you should stop using RANUNI to generate random numbers in SAS."
data rd_numbers;
random_number = ranuni(0); /* 0-1 random numbers. you can use these numbers to generate normal or other distribution */
output;
run;
proc univarite data = rd_number; var random_number ; run;
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!
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.