Hi there,I would like to generate a random output from a set of list in an array.For example, let x be an array in the data step.
x = {apple, orange, pear}.I would like to create a new variable to generate a random output from the list above.How do I do that?
Thanks,
Tan
Welcome to the SAS Community 🙂
You can do something like this
data test; array MyArray{3} $ _temporary_ ("Apple", "Orange", "Pear"); RandomFruit=MyArray[rand('integer', 1, dim(MyArray))]; run;
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.