The quick answer is, use .filter() to select the rows you want, e.g.: d3.csv("data.csv", function(csv) { csv = csv.filter(function(row) ...
確定! 回上一頁