如何在dimple.js中创建一个计算字段

时间:2016-12-09 13:31:50

标签: dimple.js

如何在dimple.js中添加计算字段(计算两个或多个数据字段的字段)?

例如。我有两个领域 1.“销售价值” 2.“销售量”

现在我必须计算一个字段ASP =销售额/销售额。

1 个答案:

答案 0 :(得分:1)

我害怕酒窝没有内置的方法来处理这个问题。我认为酒窝正在为你汇总数据 - 因此难度很大。但是在这里你没有选择,只能预先聚合到数据点的级别并自己添加计算字段。例如,如果您的数据包含品牌,SKU和渠道,但您的图表位于品牌,渠道级别,则需要预处理数据,如下所示:

// var chartData is going to be the aggregated level you use for your chart.
// var added is a dictionary of aggregated data returning a row index 
// for each Brand/Channel combination.
var chartData = [],
    added = {};

// Aggregate to the Brand/Channel level
data.forEach(function (d) {
    var key = d["Brand"] + "|" + d["Channel"],
        i = added[key];

    // Check the output index
    if (i !== undefined) {
        // Brand/Channel have been added already so add the measures
        chartData[i]["Sales Value"] += parseFloat(d["Sales Value"]);
        chartData[i]["Sales Volume"] += parseFloat(d["Sales Volume"]);
    } else {
        // Get the index for the row we are about to add
        added[key] = chartData.length;
        // Insert a new output row for the Brand/Channel
        chartData.push({
            "Brand": d["Brand"],
            "Channel": d["Channel"],
            "Sales Value": parseFloat(d["Sales Value"]) || 0,
            "Sales Volume": parseFloat(d["Sales Volume"]) || 0
        });
    }
});

// Calculate ASP
chartData.forEach(function (d) {
    d["ASP"] = d["Sales Value"] / d["Sales Volume"];
});

// Draw the chart using chartData instead of data
...