<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Loading CSV Data with D3</title>
<script type="text/javascript" src="//d3js.org/d3.v3.js"></script>
</head>
<body>
<p>Nothing to see here. Take a peek at the console.</p>
<script type="text/javascript">
//Load in contents of CSV file
d3.csv("Core_Housing_Need_data.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>