chart1995 = {
const svg = d3.select(DOM.svg(width, height));
svg.selectAll('circle')
.data(year1955)
.join('circle')
.attr('fill', 'lightblue')
.attr('r' ,10)
.attr('cx', d => widthScale(d.life_expect))
.attr('cy', d => heightScale(d.fertility))
const x_axis = d3.axisBottom()
.scale(widthScale)
const y_axis = d3.axisLeft()
.scale(heightScale)
svg.append('g').attr("transform",`translate(50, ${height-20})`).call(x_axis)
svg.append('g').attr("transform", "translate(70, 10)").call(y_axis)
return svg.node();
}