AbstractStatistic

Serves as an abstract base class for statistical collection.

Inheritors

Constructors

Link copied to clipboard
constructor(name: String? = null)

Properties

Link copied to clipboard
open override var confidenceLevel: Double

Holds the confidence coefficient for the statistic

Link copied to clipboard
open override var numberMissing: Double

Used to count the number of missing data points presented When a data point having the value of (Double.NaN, Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY) are presented it is excluded from the summary statistics and the number of missing points is noted. Implementers of subclasses are responsible for properly collecting this value and resetting this value.

Functions

Link copied to clipboard
open operator override fun compareTo(other: AbstractStatistic): Int

Returns a negative integer, zero, or a positive integer if this object is less than, equal to, or greater than the specified object.

Link copied to clipboard
open override fun reset()

Resets the collector as if no observations had been collected.