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

Hello everyone, 

 

I'm trying to sum on character variables and I'm trying to think about the best way to approach this goal. Let me sketch the rough structure of my data. 

 

ID       Country 

 

1      United States 

1      United States

1      France 

1      Canada

2      South Africa

2      Japan 

2      Japan 

2      Japan

3      United States

3      Canada

3      Canada

3      Canada

 

 

I want the output to show me how many of each country appears for each ID, like so :

ID   Country       numberofoccurence

1 United States    2

1 Canada            1 

1 France             1

2 South Africa     1

2 Japan              3

3 United States  1 

3 Canada           3 

 

 

 

How can I accomplish this? 

 

As always, thanks for your help. 

1 ACCEPTED SOLUTION

Accepted Solutions
TomKari
Onyx | Level 15

Nice and easy with PROC SQL:

 

proc sql;

create table want as

select ID, Country, count(*) as numberofoccurence

from have group by ID, Country;

View solution in original post

5 REPLIES 5
Patrick
Opal | Level 21

There are multiple SAS Proc's you could use for this task.

I'd probably go for Proc SQL with a count(*) in the Select statement and a Group By ID, Country

 

TomKari
Onyx | Level 15

Nice and easy with PROC SQL:

 

proc sql;

create table want as

select ID, Country, count(*) as numberofoccurence

from have group by ID, Country;

Miracle
Barite | Level 11

Or this? proc freq data=have noprint; tables id*country / out=want(drop=percent rename=count=numberofoccurence); run; 

Reeza
Super User

You aren't summing you're counting the number of occurrences by a categorical variable. I'm only clarifying the term so that you can search for valid solutions. Key word searches requires the correct key words and are primarily designed for English speakers. 

r4321
Pyrite | Level 9

Thank you all very much for your help!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 7665 views
  • 7 likes
  • 5 in conversation