D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
LucaBrassi
Full window
Github gist
Ontario Colleges Funding Data
<!doctype html> <html> <head> <meta charset="UTF-8"> <script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> <title>D3 Examples - Loading CSV Data</title> </head> <body> <svg width="500" height="200"> <circle cx="200" cy="150" r="50" fill="blue" /> </svg> <script> d3.csv("grants.csv", function(data) { console.log(data); }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.min.js
to a secure url
https://d3js.org/d3.v3.min.js