Measures of Dispersion

Measures of dispersion are used to describe the amount of scatter around the center of the distribution. They include range, mean deviation, variance, standard deviation, and coefficient of variation.

Range

This is simply the difference between the largest value and the smallest value.

Mean deviation

This is the mean absolute difference of each observation and averaged.

$$ \bar{dev} = \frac{\displaystyle\sum\limits_{i=1}^{n} | x_i - \bar{x} | }{n} $$

Variance

The formula for the populations is different than the formula for the sample.

Population variance is calculated as follows:

$$ \sigma^{2} = \frac{\displaystyle\sum\limits_{i=1}^{n} (x_i - \mu)^2 }{N} $$

Sample variance is estimated as follows:

$$ s^2 = \frac{\displaystyle\sum\limits_{i=1}^{n} (x_i - \bar{x})^2 }{n-1} $$

Computer Formulation

The formulations are much easier to use when calculating the these on a computer or calculator.

$$ \sigma^2 = \frac{\displaystyle\sum\limits_{i=1}^{n} x_i^2 - \frac{\left( \displaystyle\sum\limits_{i=1}^{n} x_i\right)^2}{N} }{N} $$

In Excel® the buildin function:

=VAR.P(range of data)

Example:
=VAR.P( A1:A25 )
Which will produce:
Population variance for the data range

$$ s^2 = \frac{\displaystyle\sum\limits_{i=1}^{n} x_i^2 - \frac{\left( \displaystyle\sum\limits_{i=1}^{n} x_i \right)^2}{n} }{n-1} $$

In Excel® the buildin function:

=VAR.S(range of data)

Example:
=VAR.S( A1:A25 )
Which will produce:
Sample variance for the data range

Standard Deviation

The standard deviation is the square root of the variance. The population standard deviation can be calculated as follows:

$$ \sigma = \sqrt{ \frac{\displaystyle\sum\limits_{i=1}^{n} x_i^2 - \frac{\left( \displaystyle\sum\limits_{i=1}^{n} x_i\right)^2}{N} }{N}} $$

In Excel® the buildin function:

STDEV.P(range of data)

Example:
=STDEV.P( A1:A25 )
Which will produce:
Population Standard Devation for the data range

The sample standard deviation can be calculated as:

$$ s = \sqrt{\frac{\displaystyle\sum\limits_{i=1}^{n} x_i^2 - \frac{\left( \displaystyle\sum\limits_{i=1}^{n} x_i \right)^2}{n} }{n-1}} $$

In Excel® the buildin function:

=STDEV.S(range of data)

Example:
=STDEV.S( A1:A25 )
Which will produce:
Sample Standard devation for the data range

Coefficient of Variation

Coefficient of variation is a relative measure of dispersion that removes the units from the statistic. It can be calculated as:
$$ cv = \frac{s}{\bar{x}} $$
$$ cv = \frac{s}{\bar{x}} \cdot 100 $$

Standard Error

Because the variance on any sample will decrease with increasing n, a method of comparing samples of different size is needed. This is Standard Error for a sample and is given by:
$$ s_{\bar{x}} = \sqrt{\frac{s^2}{n}} $$


Also See:


Chapter 3 - Measure of Variability pages 35-46 in:
Phillips, J. L. 2000. How to think about statistics. W. H. Freeman and Co. New York. 202 pp. ISBN 0-7167-3654-3


Chapter 4 - Measure of Dispersion and Variability pages 27-32 in:

Zar, J. H. 2007. Biostatistical Analysis. Prentice-Hall, Inc. Englewood Cliffs, New Jersey. 718 pp.

Creative Commons License
Natural Resources Biometrics by David R. Larsen is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License .

Author: Dr. David R. Larsen
Created: July 19, 1996
Last Updated: December 12, 2019