BookmarkSubscribeRSS Feed
K_S
Quartz | Level 8 K_S
Quartz | Level 8

Hello, 

I am required to report incidents of X by year, state, mode of transport.

I have a decade worth of data and I used proc sql to count the incidents by mode of transport.

The problem is that I get no 0 counts, so I have some missing rows for some year+state+mode combinations. 

How do I fix this issue? I want to have all years and all states and all modes showing with 0s as the count, but the 0 count rows just don't appear.

 

PROC SQL;
CREATE TABLE WANT AS SELECT
YEAR, STATE, MODE, count(MODE) AS VALUE FROM HAVE
GROUP BY YEAR, STATE, MODE; QUIT;

3 REPLIES 3
Reeza
Super User
So you want to count something that doesn't exist in your data?
That's not possible, within SQL especially.

However, PROC FREQ has the SPARSE option which likely provides what you need - which is all combinations.

proc freq data=have noprint;
table year*state*mode / out=want sparse;
run;
K_S
Quartz | Level 8 K_S
Quartz | Level 8

I think I really overcomplicated this!

No need to use proc sql here.  proc freq does a wonderful job...

 

PGStats
Opal | Level 21

If you ever need to do this counting with SQL, here is a way to do it:

 

PROC SQL;
CREATE TABLE WANT AS 
SELECT
	y.YEAR, 	
	s.STATE, 	
	m.MODE, 
	count(h.MODE) AS VALUE 
FROM 
	(select unique year from HAVE) as y cross join
	(select unique state from HAVE) as s cross join
	(select unique mode from HAVE) as m natural left join
	HAVE as h
GROUP BY y.YEAR, s.STATE, m.MODE; 
QUIT;

(untested)

PG

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3 replies
  • 1081 views
  • 4 likes
  • 3 in conversation