2013-06-26 56 views
0

我有一個Wireshark的提取物(TSV)有兩列 - 「日期」和「窗口」像parseDate爲Wireshark的解壓即可使用繪製接收窗口

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> 

回答

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格式也應該擺脫此錯誤,只要確保不要執行這兩個修復程序。

希望這會有所幫助。

+0

謝謝你 - 愚蠢的我得到錯誤。仍然需要解決PCAP UTC Epoch.nanoseconds一段時間,我可以顯示x軸。這個網站上關於轉換時代的筆記需要我進行一些研究 –