Skip to content

Calculate the Gini coefficient of a data set.

License

Notifications You must be signed in to change notification settings

GeneralistDev/gini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gini NPM version

Calculate the Gini coefficient of a data set.

Installation

Install the package with NPM:

$ npm install -g gini

The -g flag is recommended for easy CLI usage, but completely optional.

API

For data sets that are already ordered ascendingly, use the ordered function:

var gini = require("gini");
var data = [0, 2, 3, 8, 9, 13, 14, 23, 49, 57];
var result = gini.ordered(data);
console.log(result); // = 0.5415730337078651

For data sets in any other order, use the unordered function:

var gini = require("gini");
var data = [0, 14, 2, 9, 3, 8, 13, 23, 57, 49];
var result = gini.unordered(data);
console.log(result); // = 0.5415730337078651

See here for more information about the two different methods of calculation.

CLI

Run gini from the command line, with a list of numbers provided as input arguments:

$ gini 0 14 2 9 3 8 13 23 57 49

About

Calculate the Gini coefficient of a data set.

Resources

License

Stars

Watchers

Forks

Packages

No packages published