0

我有一个带有两列的wireshark提取(TSV) - “日期”和“窗口”,如

date    window
31:35.6 524288
31:35.6 524288
31:35.6 524288
31:35.6 524288
31:35.6 522024
31:35.6 
31:35.6 521452
...

我想创建一个“窗口”的时间序列图,并使用简单的折线图(mbostock 的块 #3883245)开始。我的 index.html 仅对示例进行了少量编辑,并导致出现错误消息

[19:12:43.516] 类型错误:e 未定义@file:///home/tim/Desktop/test/multiline-2/_attachments/d3.v3.min.js:2

我一定是错过了什么——你能帮忙吗?

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

body {
  font: 10px sans-serif;
}

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

.x.axis path {
  display: none;
}

.line {
  fill: none;
  stroke: steelblue;
  stroke-width: 1.5px;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.js"></script>
<script>

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

var parseDate = d3.time.format("%M:%S.%L").parse;

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");

var yAxis = d3.svg.axis()
    .scale(y)
    .orient("left");

var line = d3.svg.line()
    .x(function(d) { return x(d.date); })
    .y(function(d) { return y(d.window); });

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 + ")");

d3.csv("data.csv", function(error, data) {
  data.forEach(function(d) {
    d.date = parseDate(d.date);
    d.window = +d.window;
  });

  x.domain(d3.extent(data, function(d) { return d.date; }));
  y.domain(d3.extent(data, function(d) { return d.window; }));

  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("Price ($)");

  svg.append("path")
      .datum(data)
      .attr("class", "line")
      .attr("d", line);
});

</script>
4

1 回答 1

2

看起来错误在第 60 行:

d3.csv("data.csv", function(error, function() {*your graph stuff here*});

应该:

d3.tsv("data.tsv", function(error, function() {*your graph stuff here*});

所以 d3 知道它正在使用 .tsv 文件而不是 .csv。

将您的数据文件转换为 .csv 格式也应该可以消除此错误,只需确保不要同时实施这两个修复程序。

希望这可以帮助。

于 2013-06-26T05:53:31.933 回答