Compute the Gini index.
Project description
pygini
Very simple module that computes the Gini index of a numpy array.
Installation
pip install pygini
Usage
import numpy as np from pygini import gini RG = np.random.default_rng(0) A = RG.random(100) GI = gini(A) # Also compute along axis A = RG.random((100, 80, 80)) GI = gini(A, axis=0) # GI.shape = (80, 80)
See examples directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size pygini-1.0.1-py3-none-any.whl (14.8 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size pygini-1.0.1.tar.gz (2.1 kB) | File type Source | Python version None | Upload date | Hashes View |