SAS 9.4
I have a dataset of car crashes in Texas for each county and each month (each entry is a crash). I want to count each entry for each county/month combo to get the monthly crash total per county. So far I've tried PROC SQL and it mixed counties or months depending on how I set it up. There are 254 counties in Texas so using specific if functions is an unappealing option as well.
This is the PROC SQL function I tried
proc sql create table count as select county, sum(val=1) as count_var from Rawdata group by month_code quit; run;
proc freq data=rawdata;
tables county*month/list;
run;
proc freq data=rawdata;
tables county*month/list;
run;
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.