Create percentile.md
https://www.easycalculation.com/statistics/percentile-rank.php Feel free to try and one-linerify it if possible, lol
This commit is contained in:
18
snippets/percentile.md
Normal file
18
snippets/percentile.md
Normal file
@ -0,0 +1,18 @@
|
||||
### Percentile
|
||||
|
||||
Calculate how many numbers are below the value and how many are the same value and
|
||||
apply the percentile formula.
|
||||
|
||||
```js
|
||||
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
|
||||
```
|
||||
Reference in New Issue
Block a user