Coefficients to measure inequality.
Project description
Inequality Coefficients:
This is small library with some implemented coefficients (or indices) intended to measure inequality or concentration of the values in a population.
Implemented coefficients
-
Gini Coefficient:
- Ordinary. Follows this formula:
- Corrected. Uses a correction for small datasets based on Deltas, 2003.
-
Ratio top / rest. Follows this formula:
Where k is is the ceil value for 100 - percentage you define.
For instance, if you take k = 10, you are getting the ratio of inequality between the top 10% percentage and the rest 90% percentage. In particular, this specific value of k is given to you directly by the ratio_top10_rest()
function.
Installation
This library is hosted on PyPI, so installation is straightforward. The easiest way to install type this at the command line (Linux, Mac, or Windows):
pip install inequality_coefficients
This library also depends on numpy, but pip
should take of that for
you already.
Basic Usage
For the simplest, typical use cases, this tells you everything you need to know.:
import inequality_coefficients as ineq
data = array([1.7, 3.2 ...]) # data can be list of nums or numpy array
gini_coeff = ineq.gini(data)
ratio_top_rest = ineq.ratio_top10_rest(data)
Development
To setup the development environment install all the dev dependiencies with pip install -r requirements.txt
and install the latest version in your sites-packages with python setup.py develop
.
Run tests
I use pytest. Install it with pip install -U pytest
and run the test with the development setup with pytest
.
Acknowledgements
Firstly, I was based on Felipe Ortega's wikixray code for implementing the gini coefficient, however, my code has changed so much (I have even fixed a bug in his code) and also now I'm using numpy as backend.
Anyway, I want to thank him for open sourcing that project.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file inequality_coefficients-1.2.3.tar.gz
.
File metadata
- Download URL: inequality_coefficients-1.2.3.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 876b3c02dabb64c75059b46fc31fe3ea934d80db8d567fa0791272243aef93ea |
|
MD5 | 786c1997b53b3eb31dc149c7c6b8538d |
|
BLAKE2b-256 | 0964f398fc0684471b12342cfbbafa1f73736ec39cec7d0a9d4ccba785ac62f6 |