Is it possible to use proc freq as like in proc sqp gruoup by? using some variables and counting?
because if I use this:
proc freq data=ds;
table var1 var2;
run;
See if this comes closer to what you want:
proc freq data=ds; tables var1 * var2 / missing list; run;
View solution in original post
you can use the by statement with proc freq
https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_freq_sect00...
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.