chart = {
const svg = d3.select(DOM.svg(width, height));
svg.append("path")
.datum(means_clean)
.attr("fill", "none")
.attr("stroke", "orange")
.attr("stroke-width", 2)
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("d", line);
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
return svg.node();
}