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: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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
  • 383 views
  • 0 likes
  • 2 in conversation