Uses of Interface
org.apache.datasketches.quantilescommon.QuantilesAPI
Packages that use QuantilesAPI
Package
Description
This package is for the implementations of the sketch algorithm developed by Zohar Karnin, Kevin Lang,
and Edo Liberty that is commonly referred to as the "KLL" sketch after the authors' last names.
The quantiles package contains stochastic streaming algorithms that enable single-pass
analysis of the distribution of a stream of quantiles.
This package contains common tools and methods for the quantiles, kll and
req packages.
This package is for the implementation of the Relative Error Quantiles sketch algorithm.
-
Uses of QuantilesAPI in org.apache.datasketches.kll
Classes in org.apache.datasketches.kll that implement QuantilesAPIModifier and TypeClassDescriptionclassThis variation of the KllSketch implements primitive doubles.classThis variation of the KllSketch implements primitive floats.classThis variation of the KllSketch implements generic data types.classThis variation of the KllSketch implements primitive longs.classThis class is the root of the KLL sketch class hierarchy. -
Uses of QuantilesAPI in org.apache.datasketches.quantiles
Classes in org.apache.datasketches.quantiles that implement QuantilesAPIModifier and TypeClassDescriptionclassCompact sketches are inherently read only.classThis is an implementation of the Low Discrepancy Mergeable Quantiles Sketch, using doubles, described in section 3.2 of the journal version of the paper "Mergeable Summaries" by Agarwal, Cormode, Huang, Phillips, Wei, and Yi:final classThis is an implementation of the Low Discrepancy Mergeable Quantiles Sketch, using generic items, described in section 3.2 of the journal version of the paper "Mergeable Summaries" by Agarwal, Cormode, Huang, Phillips, Wei, and Yi:classExtends QuantilesDoubleSketch -
Uses of QuantilesAPI in org.apache.datasketches.quantilescommon
Subinterfaces of QuantilesAPI in org.apache.datasketches.quantilescommonModifier and TypeInterfaceDescriptioninterfaceThe Quantiles API for item type double.interfaceThe Quantiles API for item type float.interfaceThe Quantiles API for item type generic.interfaceThe Quantiles API for item type long.Methods in org.apache.datasketches.quantilescommon with parameters of type QuantilesAPIModifier and TypeMethodDescriptionstatic doubleKolmogorovSmirnov.computeKSThreshold(QuantilesAPI sketch1, QuantilesAPI sketch2, double tgtPvalue) Computes the adjusted delta height threshold for the kolmogorovSmirnovTest(...) method.static booleanKolmogorovSmirnov.kolmogorovSmirnovTest(QuantilesAPI sketch1, QuantilesAPI sketch2, double tgtPvalue) Performs the Kolmogorov-Smirnov Test between two QuantilesAPI sketches. -
Uses of QuantilesAPI in org.apache.datasketches.req
Classes in org.apache.datasketches.req that implement QuantilesAPIModifier and TypeClassDescriptionfinal classThis Relative Error Quantiles Sketch is the Java implementation based on the paper "Relative Error Streaming Quantiles" by Graham Cormode, Zohar Karnin, Edo Liberty, Justin Thaler, Pavel VeselĂ˝, and loosely derived from a Python prototype written by Pavel VeselĂ˝.