{
const id = 0
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height)
svg
.selectAll("circle")
.data(d3.range(total))
.join("circle")
.attr("cx", d => width/2 + Math.cos(d/total*Math.PI*2 * factors(d).length) * width/2 / factors(d).length )
.attr("cy", d => height/2 + Math.sin(d/total*Math.PI*2 * factors(d).length) * height/2 / factors(d).length )
.attr("r", d => 1*4)
.attr("fill", 'hsl( 23deg 100% 13%)')
return svg.node()
}