kumulant

HyperLogLogResult

@Serializable
@SerialName(value = "HyperLogLogResult")
data class HyperLogLogResult(val estimate: Double, val precision: Int, val registers: IntArray, val totalSeen: Long) : Result(source)

HyperLogLog snapshot. estimate is the corrected cardinality (linear counting at the small-range, raw HLL elsewhere). registers are the dense rho values per bucket and are required to merge two snapshots without loss; precision selects bucket count m = 2^precision. totalSeen is the unweighted update count.

Constructors

Link copied to clipboard
constructor(estimate: Double, precision: Int, registers: IntArray, totalSeen: Long)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

HyperLogLogResult

constructor(estimate: Double, precision: Int, registers: IntArray, totalSeen: Long)(source)

estimate

precision

registers

totalSeen