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)"))