https://www.easycalculation.com/statistics/percentile-rank.php Feel free to try and one-linerify it if possible, lol
408 B
408 B
Percentile
Calculate how many numbers are below the value and how many are the same value and apply the percentile formula.
const percentile = (arr, val) => {
let below = 0, same = 0;
for (const number of arr) {
if (number < val) below++;
if (number === val) same++;
}
return 100 * (below + (0.5 * same)) / arr.length;
};
// percentile([1,2,3,4,5,6,7,8,9,10], 6) -> 55