I am trying to read in csv
data using d3
in codepen.io
and it is not printing me the data, even though it is printing console.log('hello')
outside the d3.csv()
:
d3.csv("http://learnjsdata.com/data/expenses.csv", function(data) {
console.log(data)
})
I added d3 cdn
of course.
Whats wrong with codepen.io
? How to make it working?
In the
debug
mode I see thatcodepen.io
does not like that theexpenses.csv
is loaded overhttp
.
I think it depends on the version of d3 you're using. In d3 v6, they changed from the signature
d3.csv(<file>, <callback>)
to a promise structure: