To do calcaculating weight mean of prvide of array
-
-
Save khangvan/def454cf08e265966899b427707750b7 to your computer and use it in GitHub Desktop.
Weighted arithmetic mean (average) in JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function weightedMean(arrValues, arrWeights) { | |
var result = arrValues.map(function (value, i) { | |
var weight = arrWeights[i]; | |
var sum = value * weight; | |
return [sum, weight]; | |
}).reduce(function (p, c) { | |
return [p[0] + c[0], p[1] + c[1]]; | |
}, [0, 0]); | |
return result[0] / result[1]; | |
} | |
weightedMean([251, 360, 210], [0.1, 0.5, 0.7]); | |
// => 270.8461538461539 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment