gpt4 book ai didi

javascript - D3 Dimple - "others"类别中的组小数据系列

转载 作者:行者123 更新时间:2023-12-03 01:59:41 25 4
gpt4 key购买 nike

我有一个用酒窝制成的饼图,但是有大量极小的部分,使图表没有吸引力。是否有 d3 或凹坑函数可以让我将这些无趣的数据分组到单个类别中?

enter image description here

最佳答案

如果没有看到您的代码和数据,就很难提供与您正在做的事情完全匹配的具体示例。这可以在使用 d3 或 dimple 之前通过过滤和减少几行代码中的值来完成。假设您的项目有一个标签和一个值,并且位于名为“all_items”的数组中。您需要设置一个阈值。

const threshold = 100;
big_items = all_items.filter(item => item.value > threshold);
small_items = all_items.filter(item => item.value <= threshold);
collected_value = {
label: `other - ${small_items.length} items`,
value: small_items.reduce((accumulator, item) => accumulator + item.value, 0)
}
big_items.push(collected_value);

然后您可以使用 big_items 数组创建图表。这不会自动决定使用什么阈值并完成您可能正在寻找的工作。

关于javascript - D3 Dimple - "others"类别中的组小数据系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50091970/

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