using_varying_scale = {
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height])
svg.append("g")
.call(xAxis_screen);
svg.append("g")
.call(yAxis);
svg.selectAll("circle")
.data(data)
.join("circle")
.attr("cx", d => x_screen(d.x))
.attr("cy", d => y(d.y))
.attr("r", 10)
return svg.node();
}