BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
n7
Calcite | Level 5 n7
Calcite | Level 5

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?

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

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;

View solution in original post

1 REPLY 1
Shmuel
Garnet | Level 18

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;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 357 views
  • 1 like
  • 2 in conversation