Compute the standard deviation of given dataset

You are given a random sample of Volumes from Arby's soda machine.

1
Volumes = [20.700, 21.000, 21.700, 17.000, 20.300, 19.500, 21.600, 18.500, 21.000];
1
Volumes = {20.700, 21.000, 21.700, 17.000, 20.300, 19.500, 21.600, 18.500, 21.000};
1
2
3
import numpy as np

Volumes = np.array([20.700, 21.000, 21.700, 17.000, 20.300, 19.500, 21.600, 18.500, 21.000])
1
Volumes = c(20.700, 21.000, 21.700, 17.000, 20.300, 19.500, 21.600, 18.500, 21.000)
1
2
3
from sympy import *

Volumes = Matrix([20.700, 21.000, 21.700, 17.000, 20.300, 19.500, 21.600, 18.500, 21.000])

Compute the standard deviation from the random sample Volumes:

standard deviation = oz

Correct answer

Student view placeholder

In student views this area is used for assessment and score info.
Tools

Staff information

Question

Title:
Compute the standard deviation of given dataset

Variant

Started at:
2026-09-19 08:00:21 (CDT)
Duration:
0s
Show/Hide answer
{
  "std": 1.4659931113307239
}
History
dec frac
rad deg