kumulant

DecayingMeanResult

@Serializable
@SerialName(value = "DecayingMeanResult")
data class DecayingMeanResult(val mean: Double, val totalWeights: Double, val timestampNanos: Long) : Result(source)

Snapshot of an exponentially time-decayed weighted mean at timestampNanos.

Constructors

DecayingMeanResult

constructor(mean: Double, totalWeights: Double, timestampNanos: Long)(source)

Properties

mean

Time-decayed weighted running mean.

timestampNanos

Wall-clock timestamp (nanoseconds) at which the snapshot was taken.

totalWeights

Effective weight of observations still contributing (decays with time).