Click here to see the SAS code.
Click here to see the example.

---------------------------------------------------------------

Had to exclude Puerto Rico from labels (similar to excluding DC)...

  set maps.uscenter(where=(fipstate(state) ne 'DC' and fipstate(state) ne 'PR') drop=long lat);

Adjusted the amount of blank space on right of map a little...

   footnote3 height=8 angle=90 ' ';

Made the legend color-chips shape more square, and re-positioned origin slightly...

   legend1 label=none shape=bar(.2in,.2in) across=1 ORIGIN=(82,18) mode=share;

Also added html= charttips (rollover text) via the 'myhtml' variable.

Back to Samples Index