Compute the standard deviation of given dataset

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

1
Volumes = [21.100, 18.400, 20.600, 20.100, 18.900, 18.800, 19.900, 20.200, 20.600, 22.200, 21.000];
1
Volumes = {21.100, 18.400, 20.600, 20.100, 18.900, 18.800, 19.900, 20.200, 20.600, 22.200, 21.000};
1
2
3
import numpy as np

Volumes = np.array([21.100, 18.400, 20.600, 20.100, 18.900, 18.800, 19.900, 20.200, 20.600, 22.200, 21.000])
1
Volumes = c(21.100, 18.400, 20.600, 20.100, 18.900, 18.800, 19.900, 20.200, 20.600, 22.200, 21.000)
1
2
3
from sympy import *

Volumes = Matrix([21.100, 18.400, 20.600, 20.100, 18.900, 18.800, 19.900, 20.200, 20.600, 22.200, 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 09:11:01 (CDT)
Duration:
0s
Show/Hide answer
{
  "std": 1.0764189174993228
}
History
dec frac
rad deg