I am selecting a group of zipcodes to tabulate frequency counts by age group via a two by two table. I would like to list the zipcodes with zero frequency counts so that the whole group of selected zipcodes and the whole set of possible combinations of age groups (there are 5 age groups) appear in the final table.
Here is the code that I have tried using Proc Freq. This still currently does not list all of the possible combinations.
proc freq data = join;
where group_1 = 1 and ZIP in ('20814' '20815' '20816' '20817' '20832'
'20850' '20851' '20852' '20853' '20866') and Race_n = 'NH-Black';
tables ZIP*agegrp / nocol norow nopercent sparse list;
title "Disease Mortality Counts 2016 By Race";
run;