kumulant

ThresholdBucketResult

@Serializable
@SerialName(value = "ThresholdBucketResult")
data class ThresholdBucketResult(val thresholds: List<Double>, val counts: List<Double>) : Result(source)

Per-bucket counts for a user-defined threshold list. For thresholds [t1, t2, ..., tK] (strictly increasing) the result holds K + 1 counts; bucket i contains t[i-1] < value <= t[i] with the open-ended ends value <= t[0] and value > t[K-1].

Constructors

Link copied to clipboard
constructor(thresholds: List<Double>, counts: List<Double>)

Properties

Link copied to clipboard

Per-bucket weighted counts; length is thresholds.size + 1.

Link copied to clipboard

Strictly increasing thresholds used to define the buckets.

ThresholdBucketResult

constructor(thresholds: List<Double>, counts: List<Double>)(source)

counts

Per-bucket weighted counts; length is thresholds.size + 1.

thresholds

Strictly increasing thresholds used to define the buckets.