|
1.
Exploratory Data Analysis
1.3. EDA Techniques 1.3.5. Quantitative Techniques
|
|||||||||||
|
Purpose: Test if standard deviation is equal to a specified value |
A chi-square test ( Snedecor and Cochran, 1983) can be used to test if the standard deviation of a population is equal to a specified value. This test can be either a two-sided test or a one-sided test. The two-sided version tests against the alternative that the true standard deviation is either less than or greater than the specified value. The one-sided version only tests in one direction. The choice of a two-sided or one-sided test is determined by the problem. For example, if we are testing a new process, we may only be concerned if its variability is greater than the variability of the current process. | ||||||||||
| Definition |
The chi-square hypothesis test is defined as:
The formula for the hypothesis test can easily be converted to form an interval estimate for the standard deviation: |
||||||||||
|
Sample Output |
Dataplot generated the following output for a chi-square test
from the GEAR.DAT data set:
CHI-SQUARED TEST
SIGMA0 = 0.1000000
NULL HYPOTHESIS UNDER TEST--STANDARD DEVIATION SIGMA = .1000000
SAMPLE:
NUMBER OF OBSERVATIONS = 100
MEAN = 0.9976400
STANDARD DEVIATION S = 0.6278908E-02
TEST:
S/SIGMA0 = 0.6278908E-01
CHI-SQUARED STATISTIC = 0.3903044
DEGREES OF FREEDOM = 99.00000
CHI-SQUARED CDF VALUE = 0.000000
ALTERNATIVE- ALTERNATIVE-
ALTERNATIVE- HYPOTHESIS HYPOTHESIS
HYPOTHESIS ACCEPTANCE INTERVAL CONCLUSION
SIGMA <> .1000000 (0,0.025), (0.975,1) ACCEPT
SIGMA < .1000000 (0,0.05) ACCEPT
SIGMA > .1000000 (0.95,1) REJECT
|
||||||||||
| Interpretation of Sample Output |
We are testing the hypothesis that the population standard deviation
is 0.1. The output is divided into three sections.
|
||||||||||
| Questions |
The chi-square test can be used to answer the following
questions:
|
||||||||||
| Related Techniques |
F Test Bartlett Test Levene Test |
||||||||||
| Software | The chi-square test for the standard deviation is available in many general purpose statistical software programs, including Dataplot. | ||||||||||