Node.js examples for Algorithm:Statistics
Get Mean value from Array
Array.prototype.mean = function(){ return Math.round( this.sum() / this.length ); };