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.
what would be the code
please & thank you
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
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.