quantileSeq
quantileSeq(A, prob[, sorted])
quantileSeq(A, [prob1, prob2, ...][, sorted])
quantileSeq(A, N[, sorted])
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)
|