function enter(s) {
return s.append("circle")
.attr("stroke", "black")
.attr("fill", "green")
.attr("stroke-width", "1")
.attr("cx", function(d, i) {
return d.x;
})
.attr("cy", (d, i) => d.y)
.attr("r", (d, i) => 0)
.call(s => s.transition().duration(delay)
.attr("r", (d, i) => d.r));
}