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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

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