The OUTLIMITS= data set saves control limits and control limit parameters. The following variables can be saved:
Table 18.19: OUTLIMITS= Data Set
|
Variable |
Description |
|---|---|
|
|
Probability ( |
|
|
Capability index |
|
|
Capability index |
|
|
Capability index |
|
|
Capability index |
|
|
Capability index |
|
|
Optional identifier for the control limits specified with the OUTINDEX= option |
|
|
Lower control limit for individual measurements |
|
|
Lower control limit for moving ranges |
|
|
Number of consecutive measurements used to compute moving ranges |
|
|
Lower specification limit |
|
|
Process mean |
|
|
Value of central line on moving range chart |
|
|
Multiple (k) of standard error of individual measurement or moving range |
|
|
Process standard deviation ( |
|
|
Subgroup-variable specified in the IRCHART statement |
|
|
Target value |
|
|
Type (estimate or standard value) of |
|
|
Upper control limit for individual measurements |
|
|
Upper control limit for moving ranges range |
|
|
Upper specification limit |
|
|
Process specified in the IRCHART statement |
Notes:
If the limits are defined in terms of a multiple k of the standard errors of
and
, the value of _ALPHA_ is computed as
, where
is the standard normal distribution function.
If the limits are probability limits, the value of _SIGMAS_ is computed as
, where
is the inverse standard normal distribution function.
The variables _CP_, _CPK_, _CPL_, _CPU_, _LSL_, and _USL_ are included only if you provide specification limits with the LSL= and USL= options. The variables _CPM_ and _TARGET_ are included if, in addition, you provide a target value with the TARGET= option. See Capability Indices for computational details.
Optional BY variables are saved in the OUTLIMITS= data set.
The OUTLIMITS= data set contains one observation for each process specified in the IRCHART statement. For an example, see Saving Control Limits.
The OUTHISTORY= data set saves individual measurements and moving ranges. The following variables are saved:
the subgroup-variable
an individual measurements variable named by process
a moving range variable named by process suffixed with R
Given a process name that contains 32 characters, the procedure first shortens the name to its first 16 characters and its last 15 characters, and then it adds the suffix.
A variable containing the moving ranges is created for each process specified in the IRCHART statement. For example, consider the following statements:
proc shewhart data=Steel; irchart (Width Diameter)*Lot / outhistory=Summary; run;
The data set Summary contains variables named Lot, Width, WidthR, Diameter, and DiameterR.
Additionally, the following variables, if specified, are included:
BY variables
block-variables
symbol-variable
ID variables
_PHASE_ (if the OUTPHASE=
option is specified)
For an example of an OUTHISTORY= data set, see Saving Individual Measurements and Moving Ranges.
The OUTTABLE= data set saves individual measurements, moving ranges, control limits, and related information. Table 18.20 lists the variables that are saved.
Table 18.20: OUTTABLE= Data Set Variables
|
Variable |
Description |
|---|---|
|
|
Probability ( |
|
|
Control limit exceeded on individual measurements chart |
|
|
Control limit exceeded on moving range chart |
|
|
Lower control limit for individual measurements |
|
|
Lower control limit for moving range |
|
|
Number of consecutive measurements used to compute moving ranges |
|
|
Process mean |
|
|
Average range |
|
|
Multiple (k) of the standard error associated with control limits |
|
Subgroup |
Values of the subgroup variable |
|
|
Individual measurement |
|
|
Moving range |
|
|
Tests for special causes signaled on individual measurements chart |
|
|
Upper control limit for individual measurements |
|
|
Upper control limit for moving range |
|
|
Process specified in the IRCHART statement |
In addition, the following variables, if specified, are included:
BY variables
block-variables
symbol-variable
ID variables
_PHASE_ (if the READPHASES=
option is specified)
Notes:
Either the variable _ALPHA_ or the variable _SIGMAS_ is saved, depending on how the control limits are defined (with the ALPHA=
or SIGMAS=
options, respectively, or with the corresponding variables in a LIMITS=
data set).
The variable _TESTS_ is saved if you specify the TESTS=
option. The kth character of a value of _TESTS_ is k if Test k is positive at that subgroup. For example, if you request all eight tests and Tests 2 and 8 are positive for a given subgroup,
the value of _TESTS_ has a 2 for the second character, an 8 for the eighth character, and blanks for the other six characters.
The variables _EXLIM_, _EXLIMR_, and _TESTS_ are character variables of length 8. The variable _PHASE_ is a character variable of length 48. The variable _VAR_ is a character variable whose length is no greater than 32. All other variables are numeric.
For an example, see Saving Control Limits.