如何使用underscore.js的reduce方法?

发布于 2024-12-05 19:57:23 字数 35 浏览 0 评论 0原文

任何人都有关于如何在下划线中使用reduce方法的示例。

anyone got any examples on how to use the reduce method in underscore.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦太阳 2024-12-12 19:57:23

下面是两个 javascript 示例,与下划线非常相似。

它们求出一组数字中的数学平均值和标准差。

您经常会看到reduce 处理与人口或统计数据相关的数组中的数千或数百万个项目。

Math.mean= function(array){
    return array.reduce(function(a, b){return a+b;})/array.length;
}
Math.stDeviation= function(array){
    var mean= Math.mean(array),
    dev= array.map(function(itm){return (itm-mean)*(itm-mean);});
    return Math.sqrt(dev.reduce(function(a, b){return a+b;})/array.length);
}

var A2= [6.2, 5, 4.5, 6, 6, 6.9, 6.4, 7.5];
alert ('mean: '+Math.mean(A2)+'; deviation: '+Math.stDeviation(A2))

/*  returned value: (String)
mean: 6.0625; deviation: 0.899913190257816
*/

Here are two javascript examples, quite similar to underscore.

These find the mathematical mean and the standard deviation in an array of numbers.

You often see reduce working with thousands or millions of items in arrays related to populatons or statistics.

Math.mean= function(array){
    return array.reduce(function(a, b){return a+b;})/array.length;
}
Math.stDeviation= function(array){
    var mean= Math.mean(array),
    dev= array.map(function(itm){return (itm-mean)*(itm-mean);});
    return Math.sqrt(dev.reduce(function(a, b){return a+b;})/array.length);
}

var A2= [6.2, 5, 4.5, 6, 6, 6.9, 6.4, 7.5];
alert ('mean: '+Math.mean(A2)+'; deviation: '+Math.stDeviation(A2))

/*  returned value: (String)
mean: 6.0625; deviation: 0.899913190257816
*/
清引 2024-12-12 19:57:23

他们有它...... http://underscorejs.org/#reduce
就在那里 - Underscore.js 官方网站。

They have it... http://underscorejs.org/#reduce
Right there - at the official Underscore.js site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文