kumulant/com.eignex.kumulant.stat.summary/MadResult MadResult @Serializable@SerialName(value = "MadResult")data class MadResult(val median: Double, val mad: Double) : Result, HasCenterScale(source)Streaming median and median absolute deviation. Members Constructors MadResult Link copied to clipboard constructor(median: Double, mad: Double) Properties center Link copied to clipboard open override val center: DoubleCenter of the distribution; typically a mean, median, or smoothed level. mad Link copied to clipboard val mad: DoubleMedian absolute deviation from the running median estimate. median Link copied to clipboard val median: DoubleEstimated stream median. scale Link copied to clipboard open override val scale: DoubleScale of the distribution; typically a standard deviation, MAD, or span. MadResult constructor(median: Double, mad: Double)(source) center open override val center: Double(source)Center of the distribution; typically a mean, median, or smoothed level. mad val mad: Double(source)Median absolute deviation from the running median estimate. median val median: Double(source)Estimated stream median. scale open override val scale: Double(source)Scale of the distribution; typically a standard deviation, MAD, or span.