我正在尝试使用: https://github.com/UsabilityEtc/d3-country-bubble-chart
但是我尝试绘画时遇到了一些问题:
我已将country.csv和continent-names.json复制到本地目录,看来我可以正确读取/加载它们。但是图纸错了。这是我的一些代码,我没有更改脚本中的任何内容:
d3.queue()
.defer(d3.csv, "/countries.csv")
.defer(d3.json, "/continent-names.json")
.await(createBubbleChart);
function createBubbleChart(error, countries, continentNames)....
我不太了解“国家”:
var populations = countries.map(function (country) { return
+country.Population; });