I am trying to create a table linked to a *.csv file using d3, but all I get is a blank webpage. Even with the example Crimea I get a blank page. I would be
*.csv
There is a bug in the answer proposed by @Shawn_allen.
To solve it just change the following line of code
return {column: column, value: row[column]};
by this one
return {column: column, value: row[columns.indexOf(column)]};
Enjoy !