If the variance of a dataset is 49.0, what would the standard deviation be, written as a float? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

If the variance of a dataset is 49.0, what would the standard deviation be, written as a float?

25th Jul 2020, 10:29 PM
Arpan Das
Arpan Das - avatar
1 Answer
+ 1
The standard deviation of a dataset is defined to be the square root of the variance value, which is easy seeing as you have a variance of 49; therefore, your stdDev would be 7.0. Since this has a python tag, if you were to import math, you could use math.sqrt(x) with x being your variance to come up with a value representing the stdDev
25th Jul 2020, 11:06 PM
Caleb Kathman
Caleb Kathman - avatar