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

Link copied to clipboard
constructor(mean: Double, totalWeights: Double, timestampNanos: Long)

Properties

Link copied to clipboard

Time-decayed weighted running mean.

Link copied to clipboard

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

Link copied to clipboard

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

DecayingMeanResult

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

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).