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

I have a dataset similar to the table below (but much bigger). I want to know the number of 'yes' per group.

i.e so group a would be 2, b would 3 and c 1. Not sure how to write code to do this on the large scale

 

 

groupyes
a1
a1
a 
b1
b1
b1
c1
c 
c 
1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
proc sql;
create table want as
select group, sum(yes) as count
from your_dataset
group by group;
quit;

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20
proc sql;
create table want as
select group, sum(yes) as count
from your_dataset
group by group;
quit;
novinosrin
Tourmaline | Level 20

Or use PROC SUMMARY

 

proc summary data=your_dataset nway;
class group;
var yes;
output out=want(drop=_:) sum=count;
run;
ballardw
Super User

If you want a report that people read, and may need to made "pretty" consider Proc Report:

 

proc report data=have;
   columns group yes;
   define group / group;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 3 replies
  • 516 views
  • 0 likes
  • 3 in conversation