0

这可能是一个非常简单的问题(但我是 D3 的新手,并试图通过一些示例来更好地理解它是如何工作的)。我正在尝试修改 D3 的基本示例之一(http://bl.ocks.org/mbostock/1667367)。我基本上保持一切不变......我只是想用我自己的数据(与标准普尔 500 股票数据)使用不同的 csv 文件。在示例文件中,csv 文件具有日期(年月)和股票价格。在我的数据中,我有一个 UTC 时间戳和一个光值(介于 0-1000 之间)。这是csv的一个小例子:

date, light
2013-01-01T09:00:00.000Z,554.22
2013-01-01T09:01:00.000Z,480.83
2013-01-01T09:02:00.000Z,433.19
2013-01-01T09:03:00.000Z,596.89
2013-01-01T09:04:00.000Z,421.78
2013-01-01T09:05:00.000Z,461.23
2013-01-01T09:06:00.000Z,560.04

当,我运行我的代码时,我在控制台窗口中收到一个错误,说我有一个解析错误(不确定它是否在解析数据或光值时遇到了问题)......有没有人看到我的问题设置 csv 文件(或者我可能如何错误地解析它)?这是我正在使用的 D3 代码。

<!DOCTYPE html>
<meta charset="utf-8">
<style>

svg {
  font: 10px sans-serif;
}

path {
  fill: steelblue;
}

.axis path,
.axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.brush .extent {
  stroke: #fff;
  fill-opacity: .125;
  shape-rendering: crispEdges;
}

</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>

var margin = {top: 10, right: 10, bottom: 100, left: 40},
    margin2 = {top: 430, right: 10, bottom: 20, left: 40},
    width = 960 - margin.left - margin.right,
    height = 500 - margin.top - margin.bottom,
    height2 = 500 - margin2.top - margin2.bottom;

var parseDate = d3.time.format("%Y-%m-%dT%H:%M:%S.%LZ").parse;

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

var xAxis = d3.svg.axis().scale(x).orient("bottom"),
    xAxis2 = d3.svg.axis().scale(x2).orient("bottom"),
    yAxis = d3.svg.axis().scale(y).orient("left");

var brush = d3.svg.brush()
    .x(x2)
    .on("brush", brush);

var area = d3.svg.area()
    .interpolate("monotone")
    .x(function(d) { return x(d.date); })
    .y0(height)
    .y1(function(d) { return y(d.light); });

var area2 = d3.svg.area()
    .interpolate("monotone")
    .x(function(d) { return x2(d.date); })
    .y0(height2)
    .y1(function(d) { return y2(d.light); });

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

svg.append("defs").append("clipPath")
    .attr("id", "clip")
    .append("rect")
    .attr("width", width)
    .attr("height", height);

var focus = svg.append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

var context = svg.append("g")
    .attr("transform", "translate(" + margin2.left + "," + margin2.top + ")");

d3.csv("Light.csv", function(error, data) {
  console.log(data);

  data.forEach(function(d) {
    d.date = parseDate(d.date);
    //d.light = +d.light;
    //console.log(d);
  });

  x.domain(d3.extent(data.map(function(d) { return d.date; })));
  y.domain([0, d3.max(data.map(function(d) { return d.light; }))]);
  x2.domain(x.domain());
  y2.domain(y.domain());

  focus.append("path")
      .datum(data)
      .attr("clip-path", "url(#clip)")
      .attr("d", area);

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

  focus.append("g")
      .attr("class", "y axis")
      .call(yAxis);

  context.append("path")
      .datum(data)
      .attr("d", area2);

  context.append("g")
      .attr("class", "x axis")
      .attr("transform", "translate(0," + height2 + ")")
      .call(xAxis2);

  context.append("g")
      .attr("class", "x brush")
      .call(brush)
    .selectAll("rect")
      .attr("y", -6)
      .attr("height", height2 + 7);
});

function brush() {
  x.domain(brush.empty() ? x2.domain() : brush.extent());
  focus.select("path").attr("d", area);
  focus.select(".x.axis").call(xAxis);
}

</script>
4

2 回答 2

1

在 csv 文件的标题中,“light”标题前面有一个额外的空间。这会导致 d3.csv 出现处理问题。

data.forEach(function(d) {
  d.date = parseDate(d.date);
  d.light = +d.light;  // won't be able to access the light column data with the space
  d.light = d[' light']; // this would work if you can't fix the header at the csv source
});

嗯,也许我会向 d3 提交一个补丁来解决这个问题......

于 2013-03-23T21:03:36.923 回答
0

由于您的时间格式规范,您可能会收到该错误 - 没有%L占位符(请参阅文档)。这应该有效。

var parseDate = d3.time.format("%Y-%m-%dT%H:%M:%S.000Z").parse;
于 2013-03-22T21:58:17.757 回答