kumulant

LinearHistogram

@Serializable
@SerialName(value = "LinearHistogram")
data class LinearHistogram(val lowerBound: Double, val upperBound: Double, val binCount: Int) : SeriesStatSpec<SparseHistogramResult> (source)

Spec for LinearHistogramStat: fixed-width bins over [lowerBound, upperBound).

Constructors

LinearHistogram

constructor(lowerBound: Double, upperBound: Double, binCount: Int)(source)

Properties

binCount

Number of equal-width bins between the bounds.

lowerBound

Inclusive lower bound of the histogram's covered range.

upperBound

Exclusive upper bound of the histogram's covered range.