public static final class Quantiles.ScaleAndIndexes extends Object
Modifier and Type | Method and Description |
---|---|
Map<Integer,Double> |
compute(Collection<? extends Number> dataset)
Computes the quantile values of the given dataset.
|
Map<Integer,Double> |
compute(double... dataset)
Computes the quantile values of the given dataset.
|
Map<Integer,Double> |
compute(int... dataset)
Computes the quantile values of the given dataset.
|
Map<Integer,Double> |
compute(long... dataset)
Computes the quantile values of the given dataset.
|
Map<Integer,Double> |
computeInPlace(double... dataset)
Computes the quantile values of the given dataset, performing the computation in-place.
|
public Map<Integer,Double> compute(Collection<? extends Number> dataset)
dataset
- the dataset to do the calculation on, which must be non-empty, which will be
cast to doubles (with any associated lost of precision), and which will not be mutated by
this call (it is copied instead)public Map<Integer,Double> compute(double... dataset)
dataset
- the dataset to do the calculation on, which must be non-empty, which will not
be mutated by this call (it is copied instead)public Map<Integer,Double> compute(long... dataset)
dataset
- the dataset to do the calculation on, which must be non-empty, which will be
cast to doubles (with any associated lost of precision), and which will not be mutated by
this call (it is copied instead)public Map<Integer,Double> compute(int... dataset)
dataset
- the dataset to do the calculation on, which must be non-empty, which will be
cast to doubles, and which will not be mutated by this call (it is copied instead)public Map<Integer,Double> computeInPlace(double... dataset)
dataset
- the dataset to do the calculation on, which must be non-empty, and which will
be arbitrarily reordered by this method callCopyright © 2010–2019. All rights reserved.