D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
greenwichmytime
Full window
Github gist
LonEngWalesHousePricing1996-2014
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Loading CSV Data with D3</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> </head> <body> <p>UK House Pricing Anaysis 1996-2014</p> <svg width="200" height="200"> <img src= "https://www.clker.com/cliparts/r/Y/o/l/J/G/uk-map-blue.svg" </svg> <script type="text/javascript"> //Load in contents of CSV file d3.csv("MeanAnnualHousePricesLondonEnglandandWales1996-2014.csv", function(data) { //Now CSV contents have been transformed into //an array of JSON objects. //Log 'data' to the console, for verification. console.log(data); }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js