final class Histogram extends Serializable
A histogram of the values in a given set.:w
- Annotations
- @SerialVersionUID() @SuppressWarnings()
- Alphabetic
- By Inheritance
- Histogram
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
Value Members
- def bins: List[(Double, Int)]
Produce bins for the histogram.
Produce bins for the histogram.
- returns
a list of bins representing the histogram
- Annotations
- @SuppressWarnings()
- val hasExtremeValues: Boolean
- def isAnomalous(value: Double): Boolean
Check if a value is anamolous according to the histogram.
Check if a value is anamolous according to the histogram.
- value
the value to check for in the histogram
- returns
whether the value is anomalous according to the histogram
- Annotations
- @SuppressWarnings()
- def isAnomalous(value: BigInt): Boolean
Check if a value is anamolous according to the histogram.
Check if a value is anamolous according to the histogram.
- value
the value to check for in the histogram
- returns
whether the value is anomalous according to the histogram
- Annotations
- @SuppressWarnings()
- def isTrackable(value: Double): Boolean
Check if a given value is trackable by this histogram
Check if a given value is trackable by this histogram
- value
the value to check
- def merge(value: BigDecimal): Histogram
Merge a value into this histogram.
Merge a value into this histogram.
- value
the value to merge into the histogram
- returns
the merged histogram
- def merge(value: BigInt): Histogram
Merge a value into this histogram.
Merge a value into this histogram.
- value
the value to merge into the histogram
- returns
the merged histogram
- def merge(value: Double): Histogram
Merge a value into this histogram.
Merge a value into this histogram.
- value
the value to merge into the histogram
- returns
the merged histogram
- def merge(other: Histogram): Histogram
Merge this histogram with another histogram.
Merge this histogram with another histogram.
- other
the histogram to merge with
- returns
the merged histogram
- var sketch: DDSketch
- def toJson: JObject