d3.select(html`<svg width=${width} height=250>`)
.call(svg => svg.selectAll("g")
.data(countryCounts)
.join("g")
.attr("transform", (j, indexJ) => `translate(0,${indexJ * 20})`)
.selectAll("circle")
.data(d => d[1])
.join("circle")
.attr("transform", (i, indexI) => `translate(${indexI * 20},0)`)
.attr("cx", 15)
.attr("cy", 15)
.attr("r", d => d[1]/3))
.node()