当我尝试根据所选列过滤数据时,返回值不符合预期。我试图根据通过单击表中的列选择的应用程序来过滤数据。
d3.text(fileRef, function(datasetText)
{
parsedCSVref = d3.csv.parseRows(datasetText);
var sampleHTMLref = d3.select("#TableContents")
.append("table")
.attr("style", "margin-left: 20px")
.selectAll("tr")
.filter(function(d){ return d.Application === a.innerHTML})
.data(parsedCSVref)
.enter().append("tr")
.selectAll("td")
.data(function(d){return d;})
.enter().append("td")