Packages

final class Histogram extends Serializable

A histogram of the values in a given set.:w

Annotations
@SerialVersionUID() @SuppressWarnings()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Histogram
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Histogram(initSketch: Option[DDSketch] = None, hasExtremeValues: Boolean = false)

    Create a new histogram

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. 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()
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. val hasExtremeValues: Boolean
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. 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()
  14. 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()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. 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

  17. 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

  18. 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

  19. 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

  20. 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

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. var sketch: DDSketch
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toJson: JObject
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped