How to read in CSV with d3 v4?
问题 I'm just having a little trouble understanding the documentation for CSV Parse with D3. I currently have: d3.parse("data.csv",function(data){ salesData = data; }); But I keep on getting the error: Uncaught TypeError: d3.parse is not a function What is this supposed to look like? I'm just a little confused, and the only examples that I could find was something like this. I also tried something like: d3.dsv.parse("data.csv",function(data){ salesData = data; }); and got: Uncaught TypeError: