1.0.1 • Published 8 years ago
fdist v1.0.1
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 }