如何创建基本条形图,其中y轴为唯一计数,x轴为类别?

时间:2014-07-29 19:13:23

标签: javascript d3.js graph dc.js crossfilter

我想在x轴上创建一个带'type'的基本条形图,并在y轴上创建唯一计数。我似乎无法找到x轴上的类型示例(甚至在教程中也没有)

我有以下代码:

<div id='dc-bar-chart'></div>

这是数据

var data = [{
    date: "2011-11-14T16:17:54Z",
    quantity: 2,
    total: 190,
    tip: 100,
    type: "tab"
}, {
    date: "2011-11-14T16:20:19Z",
    quantity: 2,
    total: NaN,
    tip: 100,
    type: "tab"
}, {
    date: "2011-11-14T16:28:54Z",
    quantity: 1,
    total: 300,
    tip: 200,
    type: "visa"
}, {
    date: "2011-11-14T16:30:43Z",
    quantity: 2,
    total: 90,
    tip: 0,
    type: "tab"
}, {
    date: "2011-11-14T16:48:46Z",
    quantity: 2,
    total: 90,
    tip: 0,
    type: "tab"
}, {
    date: "2011-11-14T16:53:41Z",
    quantity: 2,
    total: 90,
    tip: 0,
    type: "tab"
}, {
    date: "2011-11-14T16:54:06Z",
    quantity: 1,
    total: NaN,
    tip: null,
    type: "cash"
}, {
    date: "2011-11-14T17:02:03Z",
    quantity: 2,
    total: 90,
    tip: 0,
    type: "tab"
}, {
    date: "2011-11-14T17:07:21Z",
    quantity: 2,
    total: 90,
    tip: 0,
    type: "tab"
}, {
    date: "2011-11-14T17:22:59Z",
    quantity: 2,
    total: 90,
    tip: 0,
    type: "tab"
}, {
    date: "2011-11-14T17:25:45Z",
    quantity: 2,
    total: 200,
    tip: null,
    type: "cash"
}, {
    date: "2011-11-14T17:29:52Z",
    quantity: 1,
    total: 200,
    tip: 100,
    type: "visa"
}];

这是我的代码

ndx = new crossfilter(data)

var XDimension = ndx.dimension(function (d) {return d.type;});
var YDimension = XDimension.group().reduceSum(function (d) {return d.total;});

dc.barChart("#dc-bar-chart")
    .width(480).height(150)
    .dimension(XDimension)
    .group(YDimension)
    .centerBar(true)
    .gap(56) 
});
dc.renderAll();

1 个答案:

答案 0 :(得分:1)

你在这里遇到了一些问题。

首先,您在汇总的数据中有NaN,因此您需要将YDimension更改为

var YDimension = XDimension.group().reduceSum(function (d) {return isNaN(d.total) ? 0 : d.total;});

让Crossfilter正确加分。

但实际答案是关于你的x尺度。你现在只是不包括一个,但听起来你所说的是Ordinal Scale。序数尺度是您通常认为的条形图尺度;它们是一种具有离散域的比例。在这种情况下,您可以尝试添加如此的序数比例:

.x(d3.scale.ordinal().domain(["visa", "cash", "tab"]))

所以它使用了序数比例。由于您使用的是dc.js,因此您还需要指定

.xUnits(dc.units.ordinal)

以便它知道使用序号。

总的来说,我用了

dc.barChart("#dc-bar-chart")
    .width(480).height(150)
    .x(d3.scale.ordinal().domain(["visa", "cash", "tab"]))
    .xUnits(dc.units.ordinal)
    .dimension(XDimension)
    .group(YDimension)
    .centerBar(false);

它在我的结尾工作得很好。根据您的dc.js版本,您可以省略域名并让dc.js自动计算出来。在这种情况下,您可以使用

.x(d3.scale.ordinal())