gpt4 book ai didi

javascript - 将数据分成 n 组,按某些数字属性分布

转载 作者:行者123 更新时间:2023-11-29 15:33:14 26 4
gpt4 key购买 nike

假设我有以下数据样本。

[
{ _id: "1", weight: 3 },
{ _id: "2", weight: 3 },
{ _id: "3", weight: 4 },
{ _id: "4", weight: 1.5 }
]

我想获取此数据,并将其除以属性 weight,以便它在每个组中都与该属性保持平衡。在这种情况下,最终结果应该是这样的:

groupByProperty(fakeData, 2, 'weight');
[
[{ _id: "1", weight: 3}, { _id: "2", weight: 3}], // total: 6
[{ _id: "3", weight: 4}, {_id: "4", weight: 1.5}] // total: 5.5
]

也就是说,每个组中的权重应该尽可能相似/同质。是否有捷径可寻?我玩弄了一些 lodash 来完成它

groupByProperty = function (data, divisions, property) {
let compartments = _.range(divisions);
_.each(fakeData, (d) => {
_(compartments)
.sortBy((i) => _.sum(_.pluck(i, 'weight')))
.reverse()
.first()
.push(product);
});
return compartments;
}

没有真正起作用,但这是一个开始。

如何在 javascript 中将数据分成 n 个按属性分布的组?

最佳答案

功能:

function groupByProperty(data, divisions, field) {
divisions = Math.round(divisions);
var l = data.length;

if(divisions <= 0 || l < divisions) {
return data;
} else {
var out = [];
for(var i = 0; i < divisions; i++){
out.push([]);
}

data = _.sortBy(data, function(p){return -p[field];});

for(var i = 0; i < l; i++){
var record = data[i];

out = _.sortBy(out, function(p){return _.reduce(p, function(memo, x){return memo + x[field];}, 0);});

out[0].push(record);
}
return out;
}
};

测试函数:

var result = groupByProperty(data, 2, 'weight');
console.log(result);
for(var i = 0; i < result.length; i++){
console.log(_.reduce(result[i], function(memo, p){ return memo + p.weight;}, 0));
}

2、3、4 分区的结果:

5.5, 6
4.5, 3, 4
1.5, 3, 3, 4

已用:_.sortBy() & _.reduce()
Original article on Russian (for php)

关于javascript - 将数据分成 n 组,按某些数字属性分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32362810/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com