stdDev property

num stdDev

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

See popStdDev for the assumption this is a population.

Implementation

num get stdDev {
  return sqrt(variance);
}