Package cern.jet.stat.tdouble.quantile
Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.
See: Description
-
Interface Summary Interface Description DoubleQuantileFinder The interface shared by all quantile finders, no matter if they are exact or approximate. -
Class Summary Class Description DoubleBuffer A buffer holding double elements; internally used for computing approximate quantiles.DoubleEquiDepthHistogram Read-only equi-depth histogram for selectivity estimation.DoubleQuantileFinderFactory Factory constructing exact and approximate quantile finders for both known and unknown N.ExactDoubleQuantileFinder Exact quantile finding algorithm for known and unknown N requiring large main memory; computes quantiles over a sequence of double elements.
Package cern.jet.stat.tdouble.quantile Description
Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.
The approximation guarantees are explicit, and apply for arbitrary value distributions and arrival distributions of the dataset.
The main memory requirements are smaller than for any other known technique by an order of magnitude.
1. Algorithm to compute quantiles.
2. 1-dim-equi-depth histogram.
3. 1-dim-histogram arbitrarily rebinnable in real-time.
4. A space efficient MultiSet data structure using lossy compression.
5. A space efficient value preserving bin of a 2-dim or d-dim histogram.
(All subject to an accuracy specified by the user.)
Have a look at the documentation of class
Also see
The approx. algorithms are primarily intended to help applications scale. When faced with a large data sequence, traditional methods either need very large memories or time consuming disk based sorting. In constrast, the approx. algorithms can deal with > 10^10 values without disk based sorting.
All classes can be seen from various angles, for example as
DoubleQuantileFinderFactory and the interface DoubleQuantileFinder to learn more.
Most users will never need to know more than how to use these.
Actual implementations of the QuantileFinder interface are hidden.
They are indirectly constructed via the the factory.
Also see
QuantileDoubleBin1D, demonstrating how this package can be used.DMelt 3.0 © DataMelt by jWork.ORG