Built with blockbuilder.org
forked from 4xDMG's block: FEM: Exercise 1 starter
forked from 4xDMG's block: FEM: Exercise 1 starter
forked from anonymous's block: FEM: Exercise 1 starter
forked from tw15egan's block: Austin TX Average Temperature (OCT 2011 - SEPT 2012)
xxxxxxxxxx
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<svg></svg>
<script>
const city = 'Austin';
const width = 800;
const height = 300;
// dataset of city temperatures across time
d3.tsv('data.tsv', (err, data) => {
// clean the data
data.forEach(d => {
// console.log(d.date)
d.date = d3.timeParse("%Y%m%d")(d.date);
// console.log(d.date)
d.date = new Date(d.date); // x
d[city] = +d[city]; // y
});
</script>
</body>
https://d3js.org/d3.v4.min.js