You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standard Deviation is a measure of how spread out numbers are.
# Standard deviation = a measure of how spread out a group of numbers is from the meannp.std(a2)
# Standar deviation = Square Root of Variancenp.sqrt(np.var(a2))
Variance
The average of the squared differences from the Mean.
# Varainace = measure of the average degree to which each number is different to the mean# Higher variance = wider range of numbers# Lower variance = lower range of numbersnp.var(a2)
Example:
The heights (at the shoulders) are: 600mm, 470mm, 170mm, 430mm and 300mm
Mean = (600 + 470 + 170 + 430 + 300)/5 = 394mm
Variance = 21704
Standard Deviation = sqrt(variance) = 147 mm
we can show which heights are within one Standard Deviation (147mm) of the Mean:
Standard Deviation we have a "standard" way of knowing what is normal, and what is extra large or extra small