kumulant

QuantileFilterResult

@Serializable
@SerialName(value = "QuantileFilterResult")
data class QuantileFilterResult(val probability: Double, val threshold: Double, val totalWeights: Double) : Result(source)

Snapshot from QuantileFilterStat: the running probability-quantile of the input stream plus the helper score that flags an observation as anomalous when it exceeds that quantile.

Constructors

Link copied to clipboard
constructor(probability: Double, threshold: Double, totalWeights: Double)

Properties

Link copied to clipboard

Probability at which the threshold is evaluated, in (0, 1).

Link copied to clipboard

Estimated quantile of the input stream at probability.

Link copied to clipboard

Cumulative observation weight folded into the underlying sketch.

Functions

Link copied to clipboard

1.0 when x strictly exceeds threshold, 0.0 otherwise.

QuantileFilterResult

constructor(probability: Double, threshold: Double, totalWeights: Double)(source)

probability

Probability at which the threshold is evaluated, in (0, 1).

score

1.0 when x strictly exceeds threshold, 0.0 otherwise.

threshold

Estimated quantile of the input stream at probability.

totalWeights

Cumulative observation weight folded into the underlying sketch.