{{ 'ml-label-loading-course' | message }}
{{ toc.name }}
{{ toc.signature }}
{{ tocHeader }} {{ 'ml-btn-view-details' | message }}
{{ tocSubheader }}
{{ 'ml-toc-proceed-mlc' | message }}
{{ 'ml-toc-proceed-tbs' | message }}
Lesson
Exercises
Recommended
Tests
An error ocurred, try again later!
Chapter {{ article.chapter.number }}
{{ article.number }}. 

{{ article.displayTitle }}

{{ article.intro.summary }}
Show less Show more expand_more
{{ ability.description }} {{ ability.displayTitle }}
Lesson Settings & Tools
{{ 'ml-lesson-number-slides' | message : article.intro.bblockCount }}
{{ 'ml-lesson-number-exercises' | message : article.intro.exerciseCount }}
{{ 'ml-lesson-time-estimation' | message }}
Method

Finding the Standard Deviation of a Data Set

The standard deviation, of a data set is calculated using the following formula.
In this formula, is the number of values in the data set and is the mean of the data set. Performing this calculation in one step makes for a convoluted expression. Therefore, it is best divided into a few, smaller steps. Consider the following data set as an example.
Follow these steps when finding the standard deviation.
1
Find the Mean,
expand_more
First, calculate the mean of the data set. The example data set has values, so the denominator is
The mean of the data is
2
Find the Deviation of Each Data Value,
expand_more

For each data value, can now be calculated and added to a table. This shows how much each data point varies from the mean.

3
Square the Deviations,
expand_more

Square the deviations, and add them to a new column in the table.

4
Find the Mean of the Squared Deviations,
expand_more
The squared deviations should be added and divided by the number of data values. In other words, the mean of the squared deviations is found.
This value is called the variance of the data set.
5
Take the Square Root of the Mean of the Squared Deviations,
expand_more
Finally, take the square root of the just found quotient to get the standard deviation. Here, the fraction is used instead of the quotient, to avoid rounding errors.
Thus, a randomly chosen value from this data set is expected to deviate roughly units from the mean.
Loading content