See: Description
Interface | Description |
---|---|
FloatQuantileFinder |
The interface shared by all quantile finders, no matter if they are exact or
approximate.
|
Class | Description |
---|---|
FloatEquiDepthHistogram |
Read-only equi-depth histogram for selectivity estimation.
|
FloatQuantileFinderFactory |
Factory constructing exact and approximate quantile finders for both known
and unknown N.
|
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.
QuantileDoubleBin1D
, demonstrating how this package can be used.Jump to the Parallel Colt Homepage