quantilesIfNormal property

List<num> quantilesIfNormal

The theoretical quantiles associated with the stored values under the assumption that the sampled population is normal.

Implementation

List<num> get quantilesIfNormal {
  final d = Normal(mean, inferredVariance);
  return [for (var i = 0; i < length; i++) d.cdf(this[i])];
}