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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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