Uses of Interface
cern.jet.stat.quantile.DoubleQuantileFinder
-
Packages that use DoubleQuantileFinder Package Description cern.jet.stat.quantile Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.hep.aida.bin Multisets (bags) with efficient statistics operations defined upon; This package requires the Colt distribution. -
-
Uses of DoubleQuantileFinder in cern.jet.stat.quantile
Classes in cern.jet.stat.quantile that implement DoubleQuantileFinder Modifier and Type Class Description (package private) class
DoubleQuantileEstimator
The abstract base class for approximate quantile finders computing quantiles over a sequence of double elements.(package private) class
ExactDoubleQuantileFinder
Exact quantile finding algorithm for known and unknown N requiring large main memory; computes quantiles over a sequence of double elements.(package private) class
KnownDoubleQuantileEstimator
Approximate quantile finding algorithm for known N requiring only one pass and little main memory; computes quantiles over a sequence of double elements.(package private) class
UnknownDoubleQuantileEstimator
Approximate quantile finding algorithm for unknown N requiring only one pass and little main memory; computes quantiles over a sequence of double elements.Methods in cern.jet.stat.quantile that return DoubleQuantileFinder Modifier and Type Method Description static DoubleQuantileFinder
QuantileFinderFactory. newDoubleQuantileFinder(boolean known_N, long N, double epsilon, double delta, int quantiles, RandomEngine generator)
Returns a quantile finder that minimizes the amount of memory needed under the user provided constraints.Methods in cern.jet.stat.quantile with parameters of type DoubleQuantileFinder Modifier and Type Method Description static double
QuantileFinderTest. epsilon(DoubleArrayList sortedList, DoubleQuantileFinder finder, double phi)
Observed epsilonstatic double
QuantileFinderTest. observedEpsilonAtPhi(double phi, ExactDoubleQuantileFinder exactFinder, DoubleQuantileFinder approxFinder)
This method was created in VisualAge.static DoubleArrayList
QuantileFinderTest. observedEpsilonsAtPhis(DoubleArrayList phis, ExactDoubleQuantileFinder exactFinder, DoubleQuantileFinder approxFinder, double desiredEpsilon)
This method was created in VisualAge. -
Uses of DoubleQuantileFinder in hep.aida.bin
Fields in hep.aida.bin declared as DoubleQuantileFinder Modifier and Type Field Description protected DoubleQuantileFinder
QuantileBin1D. finder
-