kumulant

BandResult

@Serializable
@SerialName(value = "BandResult")
data class BandResult(val center: Double, val scale: Double, val k: Double, val lower: Double, val upper: Double) : Result(source)

Center plus a configurable multiple of scale, derived from any HasCenterScale result via the BandSeries spec. The band wrapper forwards update / reset / create to the inner stat and projects read into this BandResult.

Constructors

Link copied to clipboard
constructor(center: Double, scale: Double, k: Double, lower: Double, upper: Double)

Properties

Link copied to clipboard

Center exposed by the inner result.

Link copied to clipboard
val k: Double

Multiplier applied to scale when computing lower and upper.

Link copied to clipboard

center - k * scale.

Link copied to clipboard

Scale exposed by the inner result.

Link copied to clipboard

center + k * scale.

BandResult

constructor(center: Double, scale: Double, k: Double, lower: Double, upper: Double)(source)

center

Center exposed by the inner result.

k

Multiplier applied to scale when computing lower and upper.

lower

center - k * scale.

scale

Scale exposed by the inner result.

upper

center + k * scale.