Metadata-Version: 2.1
Name: percentiles
Version: 0.2.2
Summary: Get percentile of sequence without numpy
Home-page: https://github.com/heaviss/percentiles
Author: Vladimir Seregin
Author-email: 31631@rambler.ru
License: MIT
Description: # Find x-th percentile of a sequence without numpy 
        
        [![codecov](https://codecov.io/gh/heaviss/percentiles/branch/master/graph/badge.svg)](https://codecov.io/gh/heaviss/percentiles)
        [![CircleCI](https://circleci.com/gh/heaviss/percentiles.svg?style=svg)](https://circleci.com/gh/heaviss/percentiles)
        
        Because sometimes you need one function only.
        
        ## Install
        ```
        pip install percentiles
        ```
        
        ## Use
        ```pycon
        >>> 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/
Keywords: percentile,statistics
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
