I had to change: `d3.csv("time_scale_data.csv", rowConverter, function(data) {...})` to: `d3.csv("time_scale_data.csv", rowConverter).then(function(data) {...})` to get it to work.
I had to change:
d3.csv("time_scale_data.csv", rowConverter, function(data) {...})to:
d3.csv("time_scale_data.csv", rowConverter).then(function(data) {...})to get it to work.