fdist
v1.0.1
Published
Creates a frequency distribution from an array of data
Downloads
12
Readme
Fist
Node module that generates the frequency distribution from an array of data
Usage:
var sample = require('fdist');
sample.fDist(['orange','pear','banana','banana','apple','orange','pear','banana'])
{ orange: 2, pear: 2, banana: 3, apple: 1 }
