xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>SVG Example</title>
<script type="text/javascript" src="https://d3js.org/d3.v3.js"></script>
<style type="text/css">
body {
background-color: #ddddff;
}
svg {
background-color: white;
}
</style>
</head>
<body>
<svg width="500" height="200">
<circle cx="100" cy="100" r="50" fill="purple"></circle>
<circle cx="250" cy="100" r="50" fill="purple"></circle>
<circle cx="400" cy="100" r="50" fill="purple"></circle>
</svg>
<script type="text/javascript">
// Your D3 code will go here
d3.csv("Where do college graduates work.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