zScores property

List<num> zScores

The number of standard deviations each stored value is from the mean.

Implementation

List<num> get zScores =>
    [for (var i = 0; i < length; i++) (this[i] - mean) / standardDeviation];