quantileSeq
quantileSeq(A, prob[, sorted])
quantileSeq(A, [prob1, prob2, ...][, sorted])
quantileSeq(A, N[, sorted])
Compute the prob order quantile of a matrix or a list with values. The sequence is sorted and the middle value is returned. Supported types of sequence values are: Number, BigNumber, Unit Supported types of probablity are: Number, BigNumber. \n\nIn case of a (multi dimensional) array or matrix, the prob order quantile of all elements will be calculated.
Try it yourself:
$1 | quantileSeq([3, -1, 5, 7], 0.5)
| |
$2 | quantileSeq([3, -1, 5, 7], [1/3, 2/3])
| |
$3 | quantileSeq([3, -1, 5, 7], 2)
| |
$4 | quantileSeq([-1, 3, 5, 7], 0.5, true)
|