Skip to content

mckib2/pygini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Compute the Gini index.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published