IntegerFrequencyCellDTO

@Serializable
data class IntegerFrequencyCellDTO(val value: Int, val count: Double, val cumCount: Double, val proportion: Double, val cumProportion: Double, val cellLabel: String = "")(source)

Wire-safe mirror of one integer-frequency cell, sourced from the engine's ksl.utilities.statistic.FrequencyData. Lets a client render the same frequency distribution the engine computed for the discrete data.

Constructors

Link copied to clipboard
constructor(value: Int, count: Double, cumCount: Double, proportion: Double, cumProportion: Double, cellLabel: String = "")

Properties

Link copied to clipboard

Optional cell label (e.g., the distribution-family name for a bootstrap family frequency).

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val value: Int