Chapter Contents |
Previous |
Next |
INSET Statement |
See CAPINS2 in the SAS/QC Sample Library |
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 5.5, which demonstrates all eight compass positions. The default is NW.
proc capability data=wire; histogram strength / cfill = bigb cframe = ligr; inset n / cfill=ywh header='Position = NW' pos=nw; inset mean / cfill=ywh header='Position = N ' pos=n ; inset sum / cfill=ywh header='Position = NE' pos=ne; inset max / cfill=ywh header='Position = E ' pos=e ; inset min / cfill=ywh header='Position = SE' pos=se; inset nobs / cfill=ywh header='Position = S ' pos=s ; inset range / cfill=ywh header='Position = SW' pos=sw; inset mode / cfill=ywh header='Position = W ' pos=w ; run;
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.