Chapter Contents |
Previous |
Next |
INSET Statement |
See CAPINS2 in the SAS/QC Sample Library |
If you specify the DATA option immediately following the coordinates, the inset is positioned using axis data units. For example, the following statements place the bottom left corner of the inset at 12.5 on the horizontal axis and 10 on the vertical axis:
proc capability data=wire; histogram strength / cfill = bigb cframe = ligr; inset n / header = 'Position=(12.5,10)' position = (12.5,10) data cfill = ywh; run;The histogram is displayed in Figure 5.7. By default, the specified coordinates determine the position of the bottom left corner of the inset. You can change this reference point with the REFPOINT= option, as in the next example.
See CAPINS2 in the SAS/QC Sample Library |
If you do not use the DATA option, the inset is positioned
using axis percent units. The coordinates of the bottom
left corner of the display are (0,0), while the upper
right corner is (100,100). For example, the following
statements create a histogram with two insets, both
positioned using coordinates in axis percent units:
proc capability data=wire; histogram strength / cfill = bigb cframe = ligr; inset min / position = (5,25) header = 'Position=(5,25)' refpoint = tl cfill = ywh; inset max / position = (95,95) header = 'Position=(95,95)' refpoint = tr cfill = ywh; run;
The display is shown in Figure 5.8. Notice that the REFPOINT= option is used to determine which corner of the inset is to be placed at the coordinates specified with the POSITION= option. The first inset has REFPOINT=TL, so the top left corner of the inset is positioned 5% of the way across the horizontal axis and 25% of the way up the vertical axis. The second inset has REFPOINT=TR, so the top right corner of the inset is positioned 95% of the way across the horizontal axis and 95% of the way up the vertical axis. Note also that coordinates in axis percent units must be between 0 and 100.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.