我在windows10 64 pro上使用过hadoop 2.4。 当我尝试使用此命令将freebase raw gz文件转换为标准rdf文件时,我得到了例外:
var circles = mySvg.selectAll("circle")
.data(lineData)
.enter()
.append("circle");
var circleAttributes = circles
.attr("cx", function (d) { return xScale(d.x); })
.attr("cy", function (d) { return yScale(d.y); })
.attr("r", 6)
.style("fill", 'red')
.on('mouseover', function(d){
d3.select(this).style("fill", 'black');
d3.select('#myLines').selectAll("line").attr("class","sweepline").style("stroke", 'green');
})
.on('mouseout', function(d){
d3.select(this).style("fill", 'red');
});
似乎根本没有得到正确的路径论证,但由于我是初学者,我无法解决它。你能帮我解决一下吗?