🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to Python Notes
Topic #131

Standard Deviation


What is Standard Deviation?

Standard deviation is a number that describes how spread out the values are.

A low standard deviation means that most of the numbers are close to the mean (average) value.

A high standard deviation means that the values are spread out over a wider range.

Example: This time we have registered the speed of 7 cars:

<p><code class="pythonHigh">speed = [86,87,88,86,87,85,86]</code></p>

The standard deviation is:

<p><code class="pythonHigh">0.9</code></p>

Meaning that most of the values are within the range of 0.9 from the mean value, which is 86.4.

Let us do the same with a selection of numbers with a wider range:

<p><code class="pythonHigh">speed = [32,111,138,28,59,77,97]</code></p>

The standard deviation is:

<p><code class="pythonHigh">37.85</code></p>

Meaning that most of the values are within the range of 37.85 from the mean value, which is 77.4.

As you can see, a higher standard deviation indicates that the values are spread out over a wider range.

The NumPy module has a method to calculate the standard deviation:

Example

  import numpy

speed = [86,87,88,86,87,85,86]

x = numpy.std(speed)

print(x)

Example

  import numpy

speed = [32,111,138,28,59,77,97]

x = numpy.std(speed)

print(x)

Learn to Filter Data in Python Like a Data Analyst

image

Try a hands-on training sessions with step-by-step guidance from an expert. Try the guided project made in collaboration with Coursera now!


Variance

Variance is another number that indicates how spread out the values are.

In fact, if you take the square root of the variance, you get the standard deviation!

Or the other way around, if you multiply the standard deviation by itself, you get the variance!

To calculate the variance you have to do as follows:

  1. Find the mean:
<p><code class="pythonHigh">(32+111+138+28+59+77+97) / 7 = 77.4</code></p>
  1. For each value: find the difference from the mean:
<p><code class="pythonHigh"> 32 - 77.4 = -45.4<br/>111 - 77.4 =  33.6<br/>138
  - 77.4 =  60.6<br/> 28 - 77.4 = -49.4<br/> 59 - 77.4 = -18.4<br/> 77
  - 77.4 = - 0.4<br/> 97 - 77.4 =  19.6</code></p>
  1. For each difference: find the square value:
<p>
<code class="pythonHigh">(-45.4)<sup>2</sup> = 2061.16 </code><br/>
<code class="pythonHigh"> (33.6)<sup>2</sup> = 1128.96 </code><br/>
<code class="pythonHigh"> (60.6)<sup>2</sup> = 3672.36 </code><br/>
<code class="pythonHigh">(-49.4)<sup>2</sup> = 2440.36</code><br/>
<code class="pythonHigh">(-18.4)<sup>2</sup> =  338.56</code><br/>
<code class="pythonHigh">(- 0.4)<sup>2</sup> =    0.16</code><br/>
<code class="pythonHigh"> (19.6)<sup>2</sup> =  384.16</code><br/>
</p>
  1. The variance is the average number of these squared differences:
<p>
<code class="pythonHigh">(2061.16+1128.96+3672.36+2440.36+338.56+0.16+384.16)
  / 7 = 1432.2</code><br/>
</p>

Luckily, NumPy has a method to calculate the variance:

Example

  import numpy

speed = [32,111,138,28,59,77,97]

x = numpy.var(speed)

print(x)

Standard Deviation

As we have learned, the formula to find the standard deviation is the square root of the variance:

<p>
  √<code class="pythonHigh">1432.25 = 37.85</code><br/>
</p>

Or, as in the example from before, use the NumPy to calculate the standard deviation:

Example

  import numpy

speed = [32,111,138,28,59,77,97]

x = numpy.std(speed)

print(x)

Symbols

Standard Deviation is often represented by the symbol Sigma: σ

Variance is often represented by the symbol Sigma Squared: σ2


Chapter Summary

The Standard Deviation and Variance are terms that are often used in Machine Learning, so it is important to understand how to get them, and the concept behind them.

Want to go beyond the notes?

Join CodingNow 2.0's Python course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Standard Deviation – FAQs

Quick answers about learning Standard Deviation in Python.

This free note from CodingNow 2.0 explains Standard Deviation in Python — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every Python topic on CodingNow 2.0, including Standard Deviation, is 100% free with no signup required.
With focused practice, most students grasp Standard Deviation in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now