|
Chapter Contents |
Previous |
Next |
| Functions |
C4(n)
where n is the sample size, with
.
The C4 function returns the expected value of the standard deviation of n independent, normally distributed random variables with the same mean and with standard deviation of 1. This expected value is referred to as the control chart constant c4.
The value c4 is calculated as

For more information, refer to the ASQC Glossary and Tables for Statistical Quality Control, the ASTM Manual on Presentation of Data and Control Chart Analysis, Montgomery (1991), and Wadsworth and others (1986).
In other chapters, c4 is written as c4(n) to emphasize the dependence on n.
You can use the constant c4 to calculate an unbiased estimate
of the standard deviation
of a normal
distribution from the sample standard deviation of n observations:

The following statements result in a value of 0.939985603:
data;
constant=c4(5);
put constant;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.