d3-fetch

Table of Contents

d3-request will be deprecated by d3-fetch.

How to load a csv file howto

d3.csv("/path/to/file.csv", function(error, data) {
  if (error) throw error;
  console.log(data); // [{"Hello": "world"}, …]
});