The following notation is used in this section:
|
Process mean (expected value of the population of measurements) |
|
Process standard deviation (standard deviation of the population of measurements) |
|
Mean of measurements in ith subgroup |
|
Sample size of ith subgroup |
N |
The number of subgroups |
|
jth measurement in the ith subgroup, |
|
jth largest measurement in the ith subgroup: |
|
Weighted average of subgroup means |
|
Median of the measurements in the ith subgroup: |
|
Average of the subgroup medians: |
|
Median of the subgroup medians. Denote the jth largest median by so that . |
|
Standard error of the median of n independent, normally distributed variables with unit standard deviation (the value of can be calculated with the STDMED function in a DATA step) |
|
th percentile (0 < p < 1) of the distribution of the median of n independent observations from a normal population with unit standard deviation |
|
th percentile of the standard normal distribution |
|
th percentile of the distribution of the range of n independent observations from a normal population with unit standard deviation |
A box-and-whisker plot is displayed for the measurements in each subgroup on the box chart. FigureĀ 18.14 illustrates the elements of each plot.
Figure 18.14: Box-and-Whisker Plot
The skeletal style of the box-and-whisker plot shown in FigureĀ 18.14 is the default. You can specify alternative styles with the BOXSTYLE= option; see Example 18.2 or the entry for BOXSTYLE= in Dictionary of Options: SHEWHART Procedure.
You can compute the limits in the following ways:
as a specified multiple (k) of the standard error of (or ) above and below the central line. The default limits are computed with k = 3 (these are referred to as limits).
as probability limits defined in terms of , a specified probability that (or ) exceeds the limits
The CONTROLSTAT= option specifies whether control limits are computed for subgroup means (the default) or subgroup medians. Table 18.6 provides the formulas for the limits.
Table 18.6: Limits and Central Line for Box Charts
Control Limits |
|
---|---|
CONTROLSTAT=MEAN |
CONTROLSTAT=MEDIAN |
LCLX = lower limit = |
LCLM = lower limit = |
Central Line = |
Central Line = |
UCLX = upper limit = |
UCLM = upper limit = |
Probability Limits |
|
CONTROLSTAT=MEAN |
CONTROLSTAT=MEDIAN |
LCLX = lower limit = |
LCLM = lower limit = |
Central Line = |
Central Line = |
UCLX = upper limit = |
UCLM = upper limit = |
In the preceding tables, replace with if you specify MEDCENTRAL= AVGMEAN in addition to CONTROLSTAT=MEDIAN. Likewise, replace with if you specify MEDCENTRAL=MEDMED in addition to CONTROLSTAT=MEDIAN. If standard values and are available for and , replace with and with in Table 18.6.
Note that the limits vary with . The formulas for median limits assume that the data are normally distributed.
You can specify parameters for the limits as follows:
Specify k with the SIGMAS=
option or with the variable _SIGMAS_
in a LIMITS=
data set.
Specify with the ALPHA=
option or with the variable _ALPHA_
in a LIMITS= data set.
Specify a constant nominal sample size for the control limits with the LIMITN=
option or with the variable _LIMITN_
in a LIMITS= data set.
Specify with the MU0=
option or with the variable _MEAN_
in a LIMITS= data set.
Specify with the SIGMA0=
option or with the variable _STDDEV_
in a LIMITS= data set.
Note: You can suppress the display of the control limits with the NOLIMITS option. This is useful for creating standard side-by-side box-and-whisker plots.