popStdDev property

num popStdDev

Returns the standard deviation of given set, assuming this list is a population.

See stdDev for the assumption this is a sample.

Implementation

num get popStdDev {
  return sqrt(variance * ((length - 1) / length));
}