BookmarkSubscribeRSS Feed
okb12886
Calcite | Level 5

how do i create a subset of my sample?

for example i  have a sample of 1500, and want to look at those with only certain  characteristics; 

i would like get the proc freq for those only with the characteristics as well. 

2 REPLIES 2
okb12886
Calcite | Level 5

what would be the code

please & thank you 

Reeza
Super User

You can add in WHERE statements to filter your results as needed. Almost any PROC's in SAS will take a WHERE statement. 

 

/*filter a numeric value*/
proc freq data=sashelp.class;
where age = 13;
table sex;
run;

/*filter multiple numeric values*/
proc freq data=sashelp.class;
where age  in (10, 11);
table sex;
run;

/*filter a character values*/
proc freq data=sashelp.class;
where sex = 'F';
table age;
run;

/*filter multiple character values*/
proc freq data=sashelp.class;
where name in ('Jane', 'Alfred');
table age;
run;

@okb12886 wrote:

what would be the code

please & thank you 


 

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
  • 2 replies
  • 427 views
  • 1 like
  • 2 in conversation