zScoresInferred property

List<num> zScoresInferred

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

Implementation

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