javascript - 使用JavaScript的C3数据的数据结构/格式

标签 javascript c3.js

我正在尝试以创建 C3 条形图所需的格式获取我的对象数组,但我在使用 JavaScript 对数据进行分类时遇到了问题。下面是我的 JavaScript 代码。

data = [
  {Service:"Army",Permanent:20,Itinerant:754,Region:"Western"},
  {Service:"Air Force",Permanent:100,Itinerant:2,Region:"Eastern"},
  {Service:"Army",Permanent:10,Itinerant:7,Region:"Western"},
  {Service:"Air Force",Permanent:30,Itinerant:2,Region:"Eastern"}
]

var sumAry=[];

for (var x=0; x<data.length; x++){
   var val =sumAry.indexOf(data[x].Service);
  if(val === -1){
     var permanent += data[x].Permanent;
     sumAry.push(data[x].Service, permanent);
  }else{
    console.log("IN");
  }
}

https://codepen.io/isogunro/pen/GYRKqE?editors=0012

C3 图表查找结构/格式如下所示的数据:

        ['Army', 30],
        ['Airorce', 130],
        ['Navy', 190],
        ['Army1', 70],
        ['Airorce2', 130],
        ['Navy3', 100]

对于每个值,'Permanent' 属性将相加以获得数组的数字部分。它成为所有信息的集合。

最佳答案

假设首选格式的数字来自 Permanent 属性,您可以使用 Array.map转换您的数据集。

var data = [{
        Service: "Army",
        Permanent: 654,
        Itinerant: 754,
        Region: "Western"
    },
    {
        Service: "Air Force",
        Permanent: 9,
        Itinerant: 2,
        Region: "Eastern"
    },
    {
        Service: "Army",
        Permanent: 6,
        Itinerant: 7,
        Region: "Western"
    },
    {
        Service: "Air Force",
        Permanent: 9,
        Itinerant: 2,
        Region: "Eastern"
    }
];

var aggregates = data.map(function (o) {
    // map original objects to new ones with zeroed-out data
    return {
        Service: o.Service,
        Permanent: 0,
    }
}).filter(function (o, index, a) {
    // filter the list to have only unique `Service` properties
    var service = o.Service;
    var i;
    for (i = 0; i < a.length; i += 1) {
        if (a[i].Service === service) {
            // break out of the loop when the first matching `Service` is found.
            break;
        }
    }
    // `i` is now the index of the first matching `Service`.
    // if it's the first occurrence of that `Service`, keep it, otherwise ditch it.
    return i === index;
});

data.forEach(function (o) {
    // loop through the aggregate list and get the matching `Service` property.
    var agg = aggregates.filter(function (p) {
        return o.Service === p.Service;
    })[0]; // first element is the match.
    // sum the `Permanent` properties.
    agg.Permanent += o.Permanent;
});

// now that the data has been aggregated, transform it into the needed structure.
var c3data = aggregates.map(function (d) {
    return [d.Service, d.Permanent];
});

console.log(JSON.stringify(c3data));

关于javascript - 使用JavaScript的C3数据的数据结构/格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52544643/

相关文章:

javascript - 使用原型(prototype)与直接在构造函数中定义方法的优势?

Javascript 时间选择器不工作

javascript - Ionic scroll-delegate 的动态值

javascript - 服务器端 JavaScript (node.js) 中的帐户

javascript - c3 图表中的多线标签

javascript - 在 Node.js 同步/异步性能和速度中移动 100.000 多个文件

javascript - C3 Timeseries - 每 15 分钟只显示 x 个报价

javascript - c3.js 图表上的数据图标签被 chop

javascript - AngularJS 中 C3.js 中的两种方式数据绑定(bind)

javascript - C3.js 的格式化问题