Skip to content

Resources

Ed Herman edited this page Jan 7, 2020 · 1 revision

Creating d3 v5 hierarchical data from CSV

  1. d3.csv("filepath").then(function(data) {}) converted the .csv rows to objects in an array with the column headers as their keys.
  2. I learned how to arrange data from d3.csv into a hierarchical structure from d3.nest.
Clone this wiki locally