I am trying to find the equivalent of the Stata code "egen group" in SAS. The goal is: I have three variables x, y, and z. I want to create a new variable which will assign a different ordinal number for each combination of values of x, y, and z. How can I do this in SAS?
With hope I understand you correctly, use next code:
proc sort data=have; by x y z; run;
data new;
set have;
by x y z;
retain key;
if first.z then key+1;
run;
With hope I understand you correctly, use next code:
proc sort data=have; by x y z; run;
data new;
set have;
by x y z;
retain key;
if first.z then key+1;
run;
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 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.