I\'m just having a little trouble understanding the documentation for CSV Parse with D3. I currently have:
d3.parse(\"data.csv\",function(data){ salesDa
You can get csv data into d3 like the following -
// get the data d3.csv("data.csv", function(error, data) { if (error) throw error; console.log(data); //format data if required... //draw chart });