Hi,
I have dataset as follows:
Group Value
a 1
a 2
a 3
b 1
b 2
b 3
....
Is there a way to add group id to the dataset like follows:
Group Value group_id
a 1 1
a 2 1
a 3 1
b 1 2
b 2 2
b 3 2
....
I can use proc sql and join to do this, but is there any other simpler way?
Assuming the data is sorted by group
data want;
set have;
by group;
retain group_id 0;
if first.group then group_id+1;
run;
If the data is grouped by the group variable but not in sort order:
data want;
set have;
by group notsorted;
retain group_id 0;
if first.group then group_id+1;
run;
Assuming the data is sorted by group
data want;
set have;
by group;
retain group_id 0;
if first.group then group_id+1;
run;
If the data is grouped by the group variable but not in sort order:
data want;
set have;
by group notsorted;
retain group_id 0;
if first.group then group_id+1;
run;
Thank you very much. It worked.
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.