svg = {
let height = width/4;
let radius = 5;
const dsvg = DOM.svg(width, height);
d3.select(dsvg)
.selectAll("circle")
.data(sorted)
.join("circle")
.attr("r", radius)
.attr("fill", "darkblue")
.attr("cx", d => d[0])
.attr("cy", d => height-d[1])
d3.select(dsvg)
.append("g")
.call(d3.axisBottom(xScale))
return dsvg;
}