Computes the quantile value 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 the quantile value
(Collection<? extends Number> dataset)
| 245 | |
| 246 | |
| 247 | public double compute(Collection<? extends Number> dataset) { |
| 248 | return computeInPlace(Doubles.toArray(dataset)); |
| 249 | } |
| 250 | |
| 251 | /** |
| 252 | * Computes the quantile value of the given dataset. |
nothing calls this directly
no test coverage detected