com.eignex.kumulant/stat/summary/SummaryResult SummaryResult @Serializable@SerialName(value = "SummaryResult")data class SummaryResult(val totalWeights: Double, val mean: Double, val variance: Double, val min: Double, val max: Double) : Result, HasSampleVariance, HasCenterScale, HasMinMax(source)Snapshot exposing running mean, variance, min, and max simultaneously. Constructors SummaryResult constructor(totalWeights: Double, mean: Double, variance: Double, min: Double, max: Double)(source) Properties center open override val center: Double(source)Center of the distribution; typically a mean, median, or smoothed level. max open override val max: Double(source)Running maximum value. mean val mean: Double(source)Weighted running mean. min open override val min: Double(source)Running minimum value. scale open override val scale: Double(source)Scale of the distribution; typically a standard deviation, MAD, or span. totalWeights open override val totalWeights: Double(source)Cumulative observation weight folded in. variance open override val variance: Double(source)Population variance: sst / totalWeights. sampleStdDev Link copied to clipboard open val sampleStdDev: DoubleUnbiased sample standard deviation: sqrt([sampleVariance]). sampleVariance Link copied to clipboard open val sampleVariance: DoubleUnbiased sample variance: [sst] / ([totalWeights] - 1). Zero when totalWeights <= 1. sst Link copied to clipboard open val sst: DoubleSum of squared deviations from the running mean: Sum (x - mean)^2 * weight. stdDev Link copied to clipboard open val stdDev: DoublePopulation standard deviation: sqrt([variance]). On this pageConstructorsSummaryResultPropertiescentermaxmeanminscaletotalWeightsvariance