Created
August 8, 2022 06:09
-
-
Save jgoodie/45472224ec7f09ba4c791f266e279244 to your computer and use it in GitHub Desktop.
Read a CSV and output to console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d3.csv("data/iris.csv").then( function(data) { | |
console.log(data) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment