BookmarkSubscribeRSS Feed
msrenee1984
Obsidian | Level 7

proc freq data=r.fac2;
tables facility*year / norow nocol nopct
sparse out=FreqOut(where=(percent^=.));
run;
proc print data=FreqOut;
var facility year Count;
run;
/* Create heat maps of the tabular results */
ods graphics / width=400px;
title "shoes Facility by Year ";
title2 "sneakers (N=5952)";
/* basic heat map */
proc sgplot data=FreqOut;
heatmap x=year y=facility / freq=Count
discretex discretey
colormodel=(green redTwoColorRamp)outline;
run;

 

 

msrenee1984_1-1709124774127.png

 

msrenee1984_0-1709124730095.png

 

1 REPLY 1
FreelanceReinh
Jade | Level 19

[A duplicate of this question is being discussed in the Graphics Programming forum: proc SGPLOT HEATMAP How to display EVERY value on Y-AXIS]

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 1 reply
  • 373 views
  • 0 likes
  • 2 in conversation