Computes the quantile values of the given dataset. @param 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) @return an unmodifiable m
(Collection<? extends Number> dataset)
| 356 | |
| 357 | |
| 358 | public Map<Integer, Double> compute(Collection<? extends Number> dataset) { |
| 359 | return computeInPlace(Doubles.toArray(dataset)); |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Computes the quantile values of the given dataset. |
nothing calls this directly
no test coverage detected