Hello seniors -
I want to add a column called RandomNumber (say Z) to my existing list of variables (X Y).
Similar to way we generate a random number in excel using command =Rand().
Thanks for advise.
R
The RAND function in SAS has arguments. For uniformly distributed values similar to the RAND() function in Excel do:
data want;
set have;
Z = RAND("UNIFORM");
run;
PG
The RAND function in SAS has arguments. For uniformly distributed values similar to the RAND() function in Excel do:
data want;
set have;
Z = RAND("UNIFORM");
run;
PG
Hi PG,
I used the following, I am newbie and am sure missing something basic. Can you please gide?
data carslist;
set data=sashelp.cars;
z=rand('UNIFORM');
run;
Thanks
R
Remove the data=
data carslist;
set sashelp.cars;
z=rand('UNIFORM');
run;
PG
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.