xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>Exercise 2</title>
<script type="text/javascript" src="https://d3js.org/d3.v3.js"></script>
</head>
<body>
<p>Not much to see here; try looking in the console.</p>
<script type="text/javascript">
// load CSV file
d3.csv("goldenStateWarriors.csv", function(data) {
// CSV has been loaded and transformed into array of JSON objects
// Logging the data to the console for verification
console.log(data);
});
</script>
<svg width="500" height="500">
<circle cx="300" cy="300" r="15" fill="#04529C"/>
</svg>
</body>
</html>
Modified http://d3js.org/d3.v3.js to a secure url
https://d3js.org/d3.v3.js