Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
INSET and INSET2 Statements

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 45.5, which demonstrates all eight compass positions. The default is NW.
   proc shewhart data=wafers;
      xchart diamtr*batch / tests= 1 to 8
                            cframe = bibg
                            cinfill = ligr
                            cconnect = red;
      inset ntests 1 / height=3 cfill=ywh header='NW' pos=nw;
      inset ntests 2 / height=3 cfill=ywh header='N ' pos=n ;
      inset ntests 3 / height=3 cfill=ywh header='NE' pos=ne;
      inset ntests 4 / height=3 cfill=ywh header='E ' pos=e ;
      inset ntests 5 / height=3 cfill=ywh header='SE' pos=se;
      inset ntests 6 / height=3 cfill=ywh header='S ' pos=s ;
      inset ntests 7 / height=3 cfill=ywh header='SW' pos=sw;
      inset ntests 8 / height=3 cfill=ywh header='W ' pos=w ;
   run;

shwidet1.gif (7503 bytes)

Figure 45.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.