Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
INSET Statement

Positioning the Inset Using Compass Points

You can specify the eight compass points N, NE, E, SE, S, SW, W, and NW as keywords for the POSITION= option. The following statements create the display in Figure 28.5, which demonstrates all eight compass positions. The default is NW.
   proc pareto data=failure3;
      vbar cause /
         freq     = counts;
         cframe   = ligr
         cbars    = vigb
         cconnect = salmon;
      inset n / height=3 cfill=ywh ctext = vigb header='NW' pos=nw;
      inset n / height=3 cfill=ywh ctext = vigb header='N ' pos=n ;
      inset n / height=3 cfill=ywh ctext = vigb header='NE' pos=ne;
      inset n / height=3 cfill=ywh ctext = vigb header='E ' pos=e ;
      inset n / height=3 cfill=ywh ctext = vigb header='SE' pos=se;
      inset n / height=3 cfill=ywh ctext = vigb header='S ' pos=s ;
      inset n / height=3 cfill=ywh ctext = vigb header='SW' pos=sw;
      inset n / height=3 cfill=ywh ctext = vigb header='W ' pos=w ;
   run;

paridet1.gif (6572 bytes)

Figure 28.5: Insets Positioned Using Compass Points

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.