Calculates the standard deviation of a list of values.
values
static num standardDeviation(List<num> values) => math.sqrt(variance(values));