Class

org.apache.spark.sql.catalyst.expressions.aggregate.ApproximatePercentile

PercentileDigest

Related Doc: package ApproximatePercentile

Permalink

class PercentileDigest extends AnyRef

PercentileDigest is a probabilistic data structure used for approximating percentiles with limited memory. PercentileDigest is backed by QuantileSummaries.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PercentileDigest
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PercentileDigest(relativeError: Double)

    Permalink
  2. new PercentileDigest(summaries: QuantileSummaries, isCompressed: Boolean)

    Permalink

    summaries

    underlying probabilistic data structure QuantileSummaries.

    isCompressed

    An internal flag from class QuantileSummaries to indicate whether the underlying quantileSummaries is compressed.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def add(value: Double): Unit

    Permalink

    Insert an observation value into the PercentileDigest data structure.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def getPercentiles(percentages: Array[Double]): Array[Double]

    Permalink

    Returns the approximate percentiles of all observation values at the given percentages.

    Returns the approximate percentiles of all observation values at the given percentages. A percentile is a watermark value below which a given percentage of observation values fall. For example, the following code returns the 25th, median, and 75th percentiles of all observation values:

    val Array(p25, median, p75) = percentileDigest.getPercentiles(Array(0.25, 0.5, 0.75))
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def merge(other: PercentileDigest): Unit

    Permalink

    In-place merges in another PercentileDigest.

  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def quantileSummaries: QuantileSummaries

    Permalink

    Returns compressed object of QuantileSummaries

  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped