chart = {
const faithful = await d3.tsv(await FileAttachment("faithful.tsv").url());
const height = 600;
const margin = {top: 20, right: 30, bottom: 30, left: 40};
const x = d3.scaleLinear()
.domain(d3.extent(faithful, d => d.waiting)).nice()
.rangeRound([margin.left, width - margin.right]);
const y = d3.scaleLinear()
.domain(d3.extent(faithful, d => d.eruptions)).nice()
.rangeRound([height - margin.bottom, margin.top]);
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height]);
svg.append("g")
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(d3.axisBottom(x).tickSizeOuter(0))
.call(g => g.select(".domain").remove())
.call(g => g.select(".tick:last-of-type text").clone()
.attr("y", -3)
.attr("dy", null)
.attr("font-weight", "bold")
.text("Idle (min.)"));
svg.append("g")
.attr("transform", `translate(${margin.left},0)`)
.call(d3.axisLeft(y).tickSizeOuter(0))
.call(g => g.select(".domain").remove())
.call(g => g.select(".tick:last-of-type text").clone()
.attr("x", 3)
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.text("Erupting (min.)"));
svg.append("g")
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.selectAll("path")
.data(d3.contourDensity()
.x(d => x(d.waiting))
.y(d => y(d.eruptions))
.size([width, height])
.bandwidth(30)
.thresholds(30)
(faithful))
.join("path")
.attr("stroke-width", (d, i) => i % 5 ? 0.25 : 1)
.attr("d", d3.geoPath());
svg.append("g")
.attr("stroke", "white")
.selectAll("circle")
.data(faithful)
.join("circle")
.attr("cx", d => x(d.waiting))
.attr("cy", d => y(d.eruptions))
.attr("r", 2);
return svg.node();
}