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]

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 279 views
  • 0 likes
  • 2 in conversation