makeScatterPlot = circlesContainer => {
const scatterData = gapminderData.filter(d => d.year === year);
circlesContainer.selectAll(".brushContainer")
.data([1])
.join("g")
.attr("class", "brushContainer")
.call(brush);
circlesContainer.selectAll("circle.dot")
.data(scatterData, d => d.country)
.join("circle")
.sort((a, b) => b.pop - a.pop)
.attr("class", "dot")
.on("click", (event, d) => {
if (d.country === selectedCountry) {
mutable selectedCountry = null;
}
else mutable selectedCountry = d.country;
})
.attr("opacity", 0.8)
.attr("fill", d => {
if(d.country === selectedCountry) {
return "#3484c7";
} else if (brushedCountries.includes(d.country)) {
return "#573B9F";
} else {
return "lightgrey";
}
})
.transition().duration(1000)
.attr("cx", d => xScaleScatter(d.fertility))
.attr("cy", d => yScaleScatter(d.life_expect))
.attr("r", d => radiusScale(d.pop));
circlesContainer.selectAll("g.yAxis")
.data([1])
.join("g")
.attr("class", "yAxis")
.call(yAxisScatter);
circlesContainer.selectAll("g.xAxis")
.data([1])
.join("g")
.attr("class", "xAxis")
.call(xAxisScatter);
circlesContainer.selectAll("text.chartTitle")
.data([1])
.join("text")
.attr("class", "chartTitle")
.attr("font-family", "sans-serif")
.attr("font-size", 14)
.attr("fill", "currentColor")
.attr("y", 30)
.attr("x", 10)
.text(`Average Fertility & Life Expectancy by Country in ${year}`);
}