gpt4 book ai didi

javascript - 在 crossfilter 的 reducio 中将自定义函数与预定义函数混合

转载 作者:行者123 更新时间:2023-11-30 20:36:55 25 4
gpt4 key购买 nike

我正在尝试同时使用 reductio 库中的 .std().custom() 函数。

reducio部分我的代码如下:

dims.theme1 = myCrossfilter.dimension(function(d) {return(d.theme1);});
groups.theme1 = dims.theme1.group();

var reducer = reductio()
.custom({initial:reduceInit,add:reduceAdd,remove:reduceRemove})
.std("pl");
reducer(groups.theme1);

我的自定义函数代码是:

reduceAdd = function(p,v) {
if (!p.fundsData.hasOwnProperty(v.AdyneAccount)) {
p.fundsData[v.AdyneAccount]=0;
}
if (!p.stratsData.hasOwnProperty(v.Strategy)) {
p.stratsData[v.Strategy]=0;
}
p.fundsData[v.AdyneAccount]+=+v.plfund;
p.stratsData[v.Strategy]+=+v.plstrat;
p.value+=+v.pl;
return(p);
};
reduceRemove = function(p,v) {
p.fundsData[v.AdyneAccount]-=+v.plfund;
p.stratsData[v.Strategy]-=+v.plstrat;
p.value-=+v.pl;
return(p);
};
reduceInit = function(p,v) {
return({
value:0,
fundsData:{},
stratsData:{}
});
};

我希望我的结果(通过 groups.theme1.all()[0])看起来像下面这样(对于这个例子,我输入的值是随机的):

{
"key": "theTheme",
"value": {
"value": 10,
"fundsData": {
"a": 10,
"b": 5,
"c": 4
},
"stratsData": {
"somename": 8
},
"count": null,
"sum": null,
"sumOfSq": null,
"std": 0
}
}

它确实如此,但它不会产生 countsumsumOfSq 的值(所以对于 std当然都不是)。

当我在完全相同的记录集上单独运行 .std("pl") 而没有我的自定义函数时,它按预期工作。我不明白为什么添加自定义函数会阻止 .std("pl") 部分的正确计算。

欢迎大家帮忙!

最佳答案

在我看来,这是 Reductio 中的一个错误。测试名称表明这不应干扰 reducer 的其他方面,但测试的内容清楚地表明它确实会消除它们。

https://github.com/crossfilter/reductio/blob/cd99f5043990a838b7e04ea86dbae3c1a1203119/test/custom.spec.js#L48

我创建了 an issue for this .不知道我什么时候能得到它。您可能只想为此实现一个普通的 Crossfilter 自定义缩减器,直到我可以修复它或有人发送拉取请求。

关于javascript - 在 crossfilter 的 reducio 中将自定义函数与预定义函数混合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49728636/

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