circle_3 = {
var my_data = data_input.split(",").filter(x => x.trim().length && !isNaN(x)).map(Number)
var svg = d3.select(my_circles_3);
var circle = svg.selectAll("circle").data(my_data);
circle.style("fill", color_select_3);
circle.attr("r", function(d) { return Math.sqrt(d); });
var circleEnter = circle.enter().append("circle");
circleEnter.attr("cy", 60)
.attr("cx", function(d, i) { return i * 100 + 30; })
.attr("cy", 60)
.attr("r", function(d) { return Math.sqrt(d); });
circle.exit().remove();
return circle;
}