{
var update_Section=svg.selectAll("circle")
.data(dataset)
var enter_Section=update_Section.enter()
var g= enter_Section.append("g")
g.append("circle")
g.append("text")
.text(function(d){ return d.name})
.attr("font-family", "sans-serif")
.attr("font-size", "9px")
.attr("fill", "blue")
.attr("x", function(d, i) {
return i*80
})
.attr("y", function(d) {
return 40
})
.attr("text-anchor", "middle")
var enterAndUpdate_Section=enter_Section.merge(update_Section)
.attr('r',function(d,i){ return Number(d.appeared)/5 } )
.attr('cx',function(d,i){return i*80})
.attr('cy',10)
}