Compute the standard deviation of given dataset

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

1
Volumes = [19.300, 19.400, 15.800, 20.000, 18.900, 17.400, 19.400, 20.300, 22.100, 18.800, 20.300];
1
Volumes = {19.300, 19.400, 15.800, 20.000, 18.900, 17.400, 19.400, 20.300, 22.100, 18.800, 20.300};
1
2
3
import numpy as np

Volumes = np.array([19.300, 19.400, 15.800, 20.000, 18.900, 17.400, 19.400, 20.300, 22.100, 18.800, 20.300])
1
Volumes = c(19.300, 19.400, 15.800, 20.000, 18.900, 17.400, 19.400, 20.300, 22.100, 18.800, 20.300)
1
2
3
from sympy import *

Volumes = Matrix([19.300, 19.400, 15.800, 20.000, 18.900, 17.400, 19.400, 20.300, 22.100, 18.800, 20.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-08-04 22:49:49 (CDT)
Duration:
0s
Show/Hide answer
{
  "std": 1.554678356892007
}
History
dec frac
rad deg