来自elasticsearch输出的{d3日期直方图

时间:2016-07-13 13:49:15

标签: javascript d3.js

我正在关注来自http://bl.ocks.org/sbrudz/ed6454e3d25640d19a41

的d3日期直方图的教程

我创建了一个快速的JSfiddle,它显示了我https://jsfiddle.net/esns05vf/的位置,代码也在下面。

<html>
<head>
<style>

body {
    font: 10px sans-serif;
}
.bar {
    fill: steelblue;
    shape-rendering: crispEdges;
}
.axis path, .axis line {
    fill: none;
    stroke: #000;
    shape-rendering: crispEdges;
}

</style>

<script type="text/javascript" src="https://d3js.org/d3.v3.min.js"></script>

</head>

<script>

var myvis = [{
          "key_as_string": "01-05-2015",
          "key": 1430438400000,
          "doc_count": 186
        },
        {
          "key_as_string": "01-06-2015",
          "key": 1433116800000,
          "doc_count": 23
        }]


</script>


<body>


<script>

//New chart
var margin = {top: 10, right: 30, bottom: 30, left: 50},
    width = 960 - margin.left - margin.right,
    height = 500 - margin.top - margin.bottom;


var parseDate = d3.time.format("%d-%m-%Y").parse;
var formatDate = d3.time.format("%m-%y");
var formatCount = d3.format(",.0f");

var x = d3.time.scale().range([0, width]);
var y = d3.scale.linear().range([height, 0]);

var xAxis = d3.svg.axis().scale(x)
    .orient("bottom").tickFormat(formatDate);
var yAxis = d3.svg.axis().scale(y)
    .orient("left").ticks(6);

var svg = d3.select("body")
                    .append("svg")
                    .attr("width", width + margin.left + margin.right)
                    .attr("height", height + margin.top + margin.bottom)
                    .append("g")
                    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");


//go through my vis and run parseDate on each of the key_as_string dates 
myvis.forEach(function (d) {
    d.f = parseDate(d.key_as_string);
});


//Get the date range from d.f that contains the output of parseDate
var monthExtent = d3.extent(myvis, function (d) {return d.f;})

//Create one bin per month
var monthBins = d3.time.months(d3.time.month.offset(monthExtent[0], -1),
                                d3.time.month.offset(monthExtent[1], 1));

//Use the date historgram
var binByMonth = d3.layout.histogram()
    .value(function (d) { return d.f; })
    .bins(monthBins);

var histData = binByMonth(myvis);


//Scale the range of the data
x.domain(d3.extent(monthBins));
y.domain([0, d3.max(histData, function (d) { return d.y; })]);

svg.selectAll(".bar")
    .data(histData)
    .enter().append("rect")
    .attr("class", "bar")
    .attr("x", function (d) { return x(d.x) ; })
    .attr("width", function (d) { return x(new Date(d.x.getTime() + d.dx))-x(d.x)-1 ;})
    .attr("y", function (d) { return y(d.y); })
    .attr("height", function (d){ return height - y(d.y); })

svg.append("g")
    .attr("class", "x axis")
    .attr("transform", "translate(0," + height + ")")
    .call(xAxis);

svg.append("g")
    .attr("class", "y axis")
    .call(yAxis)
    .append("text")
    .attr("transform", "rotate(-90)")
    .attr("y", 6)
    .attr("dy", ".71em")
    .style("text-anchor", "end")
    .text("number of docs")


</script>



<div>
    <p> Date histogram </p>
</div>
</body>

</html>

在教程中,他们将数据源作为外部文件,我的数据源是elasticsearch的JSON响应。我已经将变量中的elasticsearch响应添加到JSfiddle。

我希望看到两个不同高度的条形,并且y轴也可以从0运行到最大doc_count值,而不是目前的0到1。

本教程会对与特定日期范围匹配的记录数量进行某种计算。在我的数据中,我已经有了弹性搜索返回的计数,所以我不需要另外计算。

如何才能正确呈现数据?我确信它远不如教程试图解释那么复杂,但我对D3很新,所以任何帮助都会受到赞赏。

1 个答案:

答案 0 :(得分:0)

你应该看一下这个例子(https://bl.ocks.org/mbostock/3885304),因为如你所说,你的每月记录数量

我对你的示例数据集做了一个小提琴  https://jsfiddle.net/duck4wmy/

var data = [{
          "key_as_string": "01-05-2015",
          "key": 1430438400000,
          "doc_count": 186
        },
        {
          "key_as_string": "01-06-2015",
          "key": 1433116800000,
          "doc_count": 23
        }]