Uses of Class
org.apache.datasketches.quantiles.UpdateDoublesSketch

Packages that use UpdateDoublesSketch
Package
Description
The quantiles package contains stochastic streaming algorithms that enable single-pass analysis of the distribution of a stream of quantiles.
  • Uses of UpdateDoublesSketch in org.apache.datasketches.quantiles

    Modifier and Type
    Method
    Description
    DoublesSketchBuilder.build()
    Returns an UpdateDoublesSketch with the current configuration of this Builder.
    DoublesSketchBuilder.build(org.apache.datasketches.memory.WritableMemory dstMem)
    Returns a quantiles UpdateDoublesSketch with the current configuration of this builder and the specified backing destination Memory store.
    DoublesUnion.getResult()
    Gets the result of this Union as an UpdateDoublesSketch, which enables further update operations on the resulting sketch.
    DoublesUnion.getResult(org.apache.datasketches.memory.WritableMemory dstMem)
    Places the result of this Union into the provided memory as an UpdateDoublesSketch, which enables further update operations on the resulting sketch.
    DoublesUnion.getResultAndReset()
    Gets the result of this Union as an UpdateDoublesSketch, which enables further update operations on the resulting sketch.
    UpdateDoublesSketch.heapify(org.apache.datasketches.memory.Memory srcMem)
    Factory heapify takes a compact sketch image in Memory and instantiates an on-heap sketch.
    UpdateDoublesSketch.wrap(org.apache.datasketches.memory.WritableMemory srcMem)
    Wrap this sketch around the given non-compact Memory image of a DoublesSketch.