|
Chapter Contents |
Previous |
Next |
| INSET and INSET2 Statements |
proc shewhart data=wafers;
boxchart diamtr * batch / lsl=34.9 target=35 usl=35.1;
inset lsl target usl;
inset cp cpk cpm;
xrchart diamtr*batch;
inset nmin nmax nout;
inset2 nlow2 nhigh2;
run;
The statistics displayed in an inset are computed for a specific
process variable using observations for the current BY group.
For example, in the following statements, there are two process
variables (WEIGHT and DIAMETER) and a BY variable (LOCATION).
If there are three different locations (levels of LOCATION), then
a total of six
charts are produced.
The statistics in each inset are computed for a particular variable
and location.
The labels in the inset are the same for each
chart.
proc shewhart data=axles;
by location;
xchart (weight diameter) * batch / tests=1 to 8;
inset ntests 1 to 8;
run;
The components of the INSET and INSET2 statements are described as follows.
By default, inset statistics are identified with appropriate labels, and numeric values are printed using appropriate formats. However, you can provide customized labels and formats. You provide the customized label by specifying the keyword for that statistic followed by an equal sign (=) and the label in quotes. Labels can have up to 24 characters. You provide the numeric format in parentheses after the keyword. Note that if you specify both a label and a format for a statistic, the label must appear before the format. For an example, see "Formatting Values and Customizing Labels" on this page.
inset n nmin nmax / position=ne ctext=yellow;
See "Summary of Options" for a list of all available options, and "Dictionary of Options" for detailed descriptions. Note the difference between keywords and options; keywords specify the information to be displayed in an inset, whereas options control the appearance of the inset.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.