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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.