I need to make a proc freq levels table for a variable "type", but only for entries that are ' USA ' under the "place_of_origin" variable.
Right now I'm doing
proc freq data=CarsVROOM nlevels;
tables type;
run;and it shows me the freq table for all the "Type"s, but I want to see the freq table for all the "Type"s only for ' USA ' objects. What options do I add to the tables statement? Thanks 🙂
I think you just need to include the where clause. Try this:
proc freq data=CarsVROOM nlevels;
where place_of_origin = 'USA';
tables type;
run;
I think you just need to include the where clause. Try this:
proc freq data=CarsVROOM nlevels;
where place_of_origin = 'USA';
tables type;
run;
Beautiful, thanks!!!
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.