{
const target = html`<svg id="target" viewBox="0 0 ${width} ${height}"></svg>`;
const margin = { left: 50, right: 20, top: 20, bottom: 50 };
const iwidth = width - margin.left - margin.right;
const iheight = height - margin.top - margin.bottom;
const svg = d3.select(target);
const gDrawing = svg
.append("g")
.attr("transform", `translate(${margin.left}, ${margin.top})`);
gDrawing
.append("rect")
.attr("width", iwidth)
.attr("height", iheight)
.attr("fill", "#eee");
const data = Array.from(summary.values());
const x = d3
.scaleLinear()
.domain([0, d3.max(data, (d) => d.total_players)])
.range([0, iwidth])
.nice();
const y = d3
.scaleLinear()
.domain([0, d3.max(data, (d) => d.average_age)])
.range([iheight, 0])
.nice();
const color = d3.scaleOrdinal(d3.schemeAccent);
gDrawing
.append("g")
.attr("class", "x--axis")
.attr("transform", `translate(0, ${iheight})`)
.call(d3.axisBottom(x));
gDrawing.append("g").attr("class", "y--axis").call(d3.axisLeft(y));
const circles = gDrawing
.selectAll("circle")
.data(data)
.join("circle")
.attr("cx", (d) => x(d.total_players))
.attr("cy", (d) => y(d.average_age))
.attr("r", 5)
.attr("fill", (d) => color(d.country));
svg
.append("text")
.attr("x", iwidth / 2)
.attr("y", margin.top)
.attr("text-anchor", "middle")
.style("font-size", "18px")
.text("Total Count and Average Age of Player By Country");
svg
.append("text")
.attr("x", iwidth / 2)
.attr("y", iheight + margin.top + 30)
.attr("text-anchor", "middle")
.style("font-size", "14px")
.text("Total Count of Players");
svg
.append("text")
.attr("x", -iheight / 2)
.attr("transform", "rotate(-90)")
.attr("y", -margin.left + 75)
.style("font-size", "14px")
.text("Average Player Age");
return target;
}