With SPC work, we normally try to analyze a process distribution’s shape, central tendency and spread. We usually measure this last item by computing an estimate of the process standard deviation, or sigma, designated with the Greek letter σ. There are several ways to do this; I’ll discuss the pros and cons of some of the more common methods used to estimate sigma. We’ll refer to these sigma estimates with the symbol σ.

For the purpose of discussion, I invented a data set to analyze, as shown in Table 1. The data reflects a process that starts with an average of 10. The process is influenced by a special cause that makes the average increase by 1 every hour. The standard deviation remains constant at 1, and the data follow a normal distribution.

N1N2N3N4N5X-barRsMR
10.1479.7008.72210.24411.27610.0182.5540.926
10.74612.19812.7338.81610.76611.0523.9171.5260.599
12.32613.09510.91311.31010.31011.5912.7851.1161.580
12.41511.15312.02212.22610.88211.7401.5330.6800.089
12.29113.43213.59614.13513.63513.4181.8440.6820.124
16.36714.67314.63016.34314.91515.3861.7370.8924.076
15.60815.81415.48717.97216.86616.3492.4851.0580.759
17.87319.37616.34518.66115.38817.5293.9881.6432.265
19.67718.53918.90219.91917.91518.9902.0040.8221.804
15.95418.47619.67518.61919.75818.4963.8041.5383.723
Table 1: Analysis Data

Method No. 1: The Standard Approach to Sigma Computation

s = \sqrt{\frac{\sum_{i=1}^N (x_i - \bar{x})^2}{N-1}}

This is the standard approach, used by calculators and spreadsheets any time users require sample sigma. The numerator is the sum of the squared deviations from the sample average—i.e., subtract the sample average from the first observation and square it, then the second, etc. Then add the results. If the data cluster close to the average, this sum will be smaller than if they are scattered more widely. Thus, a bigger value of s indicates a process with greater scatter.

The denominator indicates the degrees of freedom. The N-1 term in the denominator is a bias correction. For a given sample size, the denominator will be a constant. Thus, estimates of s can be compared directly for different processes when sample sizes are the same. Any observed differences can be attributed to data scatter, which may (or may not) indicate different process scatter.

Shewhart showed that this traditional estimate of s is only valid when the process is stable. If a process is influenced by a special cause, then this estimate will overestimate the process scatter. For our example, the formula estimates s as 3.337, far greater than the actual value of 1. The difference is due to the trend created by the special cause. Because the estimate includes variation from the special cause, detecting the special cause is harder to do. The 3-sigma limits from this estimate are 4.446 and 24.468, which include all of the data.

Method No. 2: Reducing Special Cause Variation with Rational Subgroups

\hat{\sigma} = \frac{\bar{R}} {d_2}

Using an estimator that doesn’t include the variation between time periods will alleviate the problem of σ being inflated by special causes. Shewhart proposed using rational subgroups to do this. A rational subgroup is a sample selected in such a manner that the opportunity for a special cause to influence the results is minimized. This is often accomplished by selecting consecutive units from a process.

In Table 1, the data are arranged in 10 subgroups of five measurements per subgroup. The first group of five were sampled in hour No. 1, the next group in hour No. 2 and so forth. The table indicates no change in the process during the time the subgroup was collected, so it’s the ideal from the Shewhart perspective.

With these “clean” subgroups, we can estimate the process dispersion for each subgroup, then combine the results to find the overall estimate of σ. One way to estimate dispersion is to find the range, R, by subtracting the smallest observation in the subgroup from the largest. After doing this, we can average the R values and use a correction factor, d2, to find σ. For subgroups of 5, the d2 factor is 2.326; for our data, the average range is 2.665. This gives σ=1.146, which is much closer to 1.0.

Method No. 3: Addressing Inefficiency in Range-Based Sigma Estimation

\hat{\sigma} = \frac{\bar{s}}{c_4}

The range uses only two data values from each subgroup, which poses a problem. In statistical terms, it’s inefficient. That is, the estimates of σ based on the range will be more erratic than when subgroup σ values are used. The range estimate inefficiency gets worse as the subgroup size increases.

Method 3 works by finding the subgroup σ values, then averaging them to get σ and dividing this by the bias-correction  factor c4. Subgroup σ values are computed using the formula shown in method 1 for each subgroup separately. Obviously, this is more tedious than finding the range for each subgroup. With method 3, we get an estimate of σ=1.158 for our data.

Method No. 4: The Median Moving Range Approach to Sigma Estimation

\hat{\sigma} = 1.047\times{{M}}\tilde{R}

If it isn’t possible or desirable to collect data in subgroups, we can correct for special causes by finding the range between consecutive hourly samples. To get σ, we must multiply the median moving range, by the correction factor 1.047. For our data, we get σ=1.654. The estimate is somewhat larger than the estimates we obtained from subgrouped data because the moving ranges don’t completely factor out the differences between the subgroup. However, the estimate is closer to the correct value than the σ value found with method No. 1. Recent research suggests that this approach gives good results for a wide variety of out-of-control patterns.

Method No. 5: Using the Average Moving Range for Sigma Estimation

\hat{\sigma} = \frac{{{M}\bar{R}}}{d_2}=\frac{{{M}\bar{R}}}{1.128}

This method for estimating σ is based on the average moving range. Doing this for the sample data set gives σ=1.532. Because it’s also based on the moving range, this estimate suffers from the same shortcomings as method No. 4.

Comparing the Different Sigma Computation Methods

Table 2 summarizes the results of all of these methods. The least accurate result is found when the standard formula is used. For SPC work, this formula should only be used when a control chart shows good statistical control. Despite the fact that, for our example, the result was slightly more accurate than the estimate, the best formula from a statistical perspective is method No. 3. For subgroups of five, the advantage isn’t all that great, but it becomes greater as the subgroup size increases. The method usually comes in second to the method, unless the statistical advantage is outweighed by some practical concern—such as ease of understanding.

Actual sigma1
Method No. 13.337Standard Formula
Method No. 21.146R-bar
Method No. 31.158s-bar
Method No. 41.654Median Moving Range
Method No. 51.532Average Moving Range
Table 2: Summary of σ Estimates

The moving range methods, while inferior to the subgroup methods, are far better than the standard σ formula. Generally speaking, the median moving range estimate gets the nod over the average moving range estimate.

For the purpose of discussion, I invented a data set to analyze, as shown in Table 1. The data reflects a process that starts with an average of 10. The process is influenced by a special cause that makes the average increase by 1 every hour. The standard deviation remains constant at 1, and the data follow a normal distribution.


4 responses to “How Do I Compute Sigma? Let Me Count the Ways”

  1. YZK Avatar

    Hi,
    This is a very useful article. Where would I look up the correction factors required for these computations? (I assume that these factors depend on the size of subgroups used to compute the moving range. In other words, if you had moving range based on groups of 4 or 6 observations instead of 5, the values of the factors would be different for the ones you used).

    YZK

    1. Thomas Pyzdek Avatar
      Thomas Pyzdek

      The old text Statistical Quality Control Methods by Irving W. Burr explains the derivation of most of the correction factors discussed here. You might need to search a bit to find it. Try https://www.abebooks.com/ if you can’t find it elsewhere.

  2. Michel Avatar

    This is a very useful article to understand SPC concerns when using a sigma calculated using the standard formula.

    In fact I went and recreate the same population and recalculated the sigma using all five methods to understand the calculations. In all method but method five, the result yielded the same result. Method five gave me 1.479 instead of 1.532.

    I believe that the value 1.294 in the MR column should read 0.759 (16.367-15.608).
    I hope you will correct me if I am wrong. The method five is the one I am looking to use and I would like to be sure I am in full understanding of it.

    Thanks.

    1. Thomas Pyzdek Avatar
      Thomas Pyzdek

      Quite correct about the typo. The table has been updated. Thanks for letting me know!

Leave a Reply

Your email address will not be published. Required fields are marked *