D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
skokenes
Full window
Github gist
Employment Project Data Load with D3
<html> <head> <script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> </head> <body> <svg width="600px" height = "400px"> <circle cx="100px" cy="100px" r="50px" stroke-width="3px" stroke="black" fill="none"></circle> <circle cx="201px" cy="100px" r="50px" stroke-width="3px" stroke="black" fill="none"></circle> <circle cx="151px" cy="187px" r="50px" stroke-width="3px" stroke="black" fill="none"></circle> </svg> <div> Check the console for some data </div> <script> d3.csv('Employment Projections cleaned.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