Published
Edited
Mar 1, 2022
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
height = 400
Insert cell
margin = ({top: 20, right: 30, bottom: 30, left: 40})
Insert cell
tempLine = d3.line()
.x(d => x(d.date))
.y(d => tempScale(d.low_temp))
Insert cell
snowfallLine = d3.line()
.x(d => x(d.date))
.y(d => snowScale(d.snowfall))
Insert cell
snowDepthLine = d3.line()
.x(d => x(d.date))
.y(d => snowScale(d.snow_depth))
Insert cell
Insert cell
x = d3.scaleTime()
.domain(d3.extent(winterData, d => d.date)).nice()
.range([margin.left, width - margin.right])
Insert cell
tempScale = d3.scaleLinear()
.domain(d3.extent(data, d => d.low_temp)).nice() //data or winterData?
.range([height - margin.bottom, margin.top])
Insert cell
snowScale = d3.scaleLinear()
.domain(d3.extent(data, d => d.snow_depth)).nice()
.range([height - margin.bottom, margin.top])
Insert cell
xAxis = g => g
.attr("transform", `translate(0,${0 + height - margin.bottom})`)
.call(d3.axisBottom(x))
.call(g => g.select(".domain").remove())
.call(g => g.append("text")
.attr("x", width - margin.right)
.attr("y", -4)
.attr("fill", "#000")
.attr("font-weight", "bold")
.attr("text-anchor", "end"))

Insert cell
tempAxis = g => g
.attr("transform", `translate(${margin.left},0)`)
.call(d3.axisLeft(tempScale))
.call(g => g.select(".domain").remove())
.call(g => g.select(".tick:last-of-type text").clone()
.attr("x", 4)
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.text("Minimum Daily Temperature (F)"))
Insert cell
snowAxis = g => g
.attr("transform", `translate(${0 + width - margin.right},0)`)
.call(d3.axisRight(snowScale))
.call(g => g.select(".domain").remove())
.call(g => g.select(".tick:last-of-type text").clone()
.attr("x", -4)
.attr("text-anchor", "end")
.attr("font-weight", "bold")
.text("Daily Snowfall (Inches)"))
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more