我使用d3.js在散点图矩阵中可视化汽车数据集(http://infovis.sjolie.se/data/?file=cars.csv)。我尝试使用Mike Bostock的例子但我的结果出了问题。有谁能够帮我?我在d3.js scatters are out of the graphs
中很新答案 0 :(得分:0)
根据你的照片判断,你的音阶都搞砸了。我的WAG是他们没有被转换为数字数据,而是被视为序数量表。您可以通过使用accessor函数强制转换来解决此问题:
d3.csv("cars.csv", function(d) {
return {
name: d["name"],
economy: +d["economy (mpg)"],
cylinders: +d["cylinders"],
displacement: +d["displacement (cc)"],
power: +d["power (hp)"],
year: +d["year"]
};
}, function(error, data) {
....