kumulant

AdwinResult

@Serializable
@SerialName(value = "AdwinResult")
data class AdwinResult(val delta: Double, val windowLength: Long, val mean: Double, val variance: Double, val changesDetected: Long, val alarm: Boolean) : Result(source)

Snapshot from an AdwinStat adaptive-windowing change detector.

Constructors

Link copied to clipboard
constructor(delta: Double, windowLength: Long, mean: Double, variance: Double, changesDetected: Long, alarm: Boolean)

Properties

Link copied to clipboard

True when the most recent SeriesStat.update caused the window to shrink.

Link copied to clipboard

Number of change points detected since SeriesStat.reset.

Link copied to clipboard

Confidence parameter for the Hoeffding-bound cut test.

Link copied to clipboard

Mean of the observations currently inside the adaptive window.

Link copied to clipboard

Population variance of the observations currently inside the adaptive window.

Link copied to clipboard

Number of observations currently inside the adaptive window.

AdwinResult

constructor(delta: Double, windowLength: Long, mean: Double, variance: Double, changesDetected: Long, alarm: Boolean)(source)

alarm

True when the most recent SeriesStat.update caused the window to shrink.

changesDetected

Number of change points detected since SeriesStat.reset.

delta

Confidence parameter for the Hoeffding-bound cut test.

mean

Mean of the observations currently inside the adaptive window.

variance

Population variance of the observations currently inside the adaptive window.

windowLength

Number of observations currently inside the adaptive window.