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

AdwinResult

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

Properties

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.