percentiles

Get percentile of sequence without numpy


Keywords
percentile, statistics
License
MIT
Install
pip install percentiles==0.2.2

Documentation

Find x-th percentile of a sequence without numpy

codecov CircleCI

Because sometimes you need one function only.

Install

pip install percentiles

Use

>>> import percentiles
>>> percentiles.percentile([100, 120, 130, 1000], 75)
347.5
>>> from numpy import percentile
>>> percentile([100, 120, 130, 1000], 75)
347.5

Credits

Original code was posted on http://code.activestate.com/recipes/511478-finding-the-percentile-of-the-values/