0

「日付」と「ウィンドウ」のような2つの列を持つ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] TypeError: e is undefined @ 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 は、.csv ではなく .tsv ファイルで動作していることを認識しています。

データ ファイルを .csv 形式に変換すると、このエラーも解消されます。ただし、両方の修正を実装しないようにしてください。

お役に立てれば。

于 2013-06-26T05:53:31.933 に答える