Compute the standard deviation of given dataset

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

1
Volumes = [23.700, 20.200, 20.800, 19.100, 19.200, 20.600, 19.600, 20.700, 19.400, 20.000, 19.300];
1
Volumes = {23.700, 20.200, 20.800, 19.100, 19.200, 20.600, 19.600, 20.700, 19.400, 20.000, 19.300};
1
2
3
import numpy as np

Volumes = np.array([23.700, 20.200, 20.800, 19.100, 19.200, 20.600, 19.600, 20.700, 19.400, 20.000, 19.300])
1
Volumes = c(23.700, 20.200, 20.800, 19.100, 19.200, 20.600, 19.600, 20.700, 19.400, 20.000, 19.300)
1
2
3
from sympy import *

Volumes = Matrix([23.700, 20.200, 20.800, 19.100, 19.200, 20.600, 19.600, 20.700, 19.400, 20.000, 19.300])

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 06:11:40 (CDT)
Duration:
0s
Show/Hide answer
{
  "std": 1.2455540769784688
}
History
dec frac
rad deg