Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 461 Bytes

standard-deviation.md

File metadata and controls

12 lines (7 loc) · 461 Bytes

Standard Deviation

{% hint style="success" %} Standard Deviation is a measure of how spread out numbers are. {% endhint %}

It is the square root of the Variance. It is often more convenient than the variance because it has the same unit as the data points.

Population Standard Deviation, $$\sigma=\sqrt{\frac{1}{n}}\sum_i^n(x_{i}-\mu)^2$$

Sample Standard Deviation, $$\sigma=\sqrt{\frac{1}{1-n}}\sum_i^n(x_{i}-\overline{x})^2$$