NumericStat enum

Inheritance

Constructors

NumericStat()
const

Values

sum → const NumericStat

The sum.

sumOfSquares → const NumericStat

The sum of the squares.

mean → const NumericStat

The mean.

variance → const NumericStat

The variance in the data.

inferredVariance → const NumericStat

The estimated variance in the sampled population.

standardDeviation → const NumericStat

The standard deviation in the data.

inferredStandardDeviation → const NumericStat

The estimated standard deviation in the sampled population.

skewness → const NumericStat

Fisher's moment coefficient of skewness.

meanAbsoluteDeviation → const NumericStat

The mean absolute deviation from the mean.

lowerQuartile → const NumericStat

The lower quartile.

median → const NumericStat

The median.

upperQuartile → const NumericStat

The upper quartile.

interQuartileRange → const NumericStat

The inter-quartile range.

maximum → const NumericStat

The greatest value

maximumNonOutlier → const NumericStat

The greatest value that is not an outlier.

minimum → const NumericStat

The least value.

minimumNonOutlier → const NumericStat

The least value that is not an outlier.

range → const NumericStat

The range of stored values.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<NumericStat>
A constant List of the values in this enum, in order of their declaration.