I am producing a HEATMAP in SGPLOT 9.4m4. I am trying to use the INTEGER option in the GRADLEGEND statement so that my color response legend only shows integer tick values (-2, -1, 0, 1, 2). Instead of getting integer tick values I am getting tick values that align with the MIN/MAX values coming out of my RATTRMAP dataset. Is this expected behavior? I don't see anything in the documentation to suggest that RATTRMAP overrides INTEGER. But maybe I haven't looked closely enough. proc sgplot data=alerts rattrmap=rdbl5std ; heatmap y=functionn x=monthyear / colorresponse=loadstd rattrid=rdbl5std discretex discretey outline outlineattrs=(color=lightgray) ; yaxis reverse display=(nolabel); xaxis display=(nolabel); gradlegend / position=bottom INTEGER; run;
... View more