collatzHistogramBin5 = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
const max = d3.max(dataHistogram);
const thresholds = [];
for (let i = 0; i <= max; i += 5) {
thresholds.push(i);
}
const bins = d3.bin().thresholds(thresholds)(dataHistogram);
const x = d3
.scaleLinear()
.domain([bins[0].x0, bins[bins.length - 1].x1])
.range([margin.left, width - margin.right]);
const y = d3
.scaleLinear()
.domain([0, d3.max(bins, (d) => d.length)])
.nice()
.range([height - margin.bottom, margin.top]);
svg
.append("g")
.attr("fill", "steelblue")
.selectAll("rect")
.data(bins)
.join("rect")
.attr("x", (d) => x(d.x0) + 1)
.attr("width", (d) => Math.max(0, x(d.x1) - x(d.x0) - 1))
.attr("y", (d) => y(d.length))
.attr("height", (d) => y(0) - y(d.length));
const xAxis = svg
.append("g")
.attr("transform", `translate(0, ${height - margin.bottom})`)
.call(
d3
.axisBottom(x)
.ticks(width / 80)
.tickSizeOuter(0)
);
xAxis
.append("text")
.attr("x", width - margin.right)
.attr("y", -15)
.attr("fill", "currentColor")
.attr("font-weight", "bold")
.attr("font-size", "0.75rem")
.attr("font-weight", "bold")
.attr("font-family", "'Helvetica Neue', sans-serif")
.attr("text-anchor", "end")
.text("Stopping time");
const yAxis = svg
.append("g")
.attr("transform", `translate(${margin.left}, 0)`)
.call(d3.axisLeft(y).tickSizeOuter(0));
yAxis
.select(".tick:last-of-type text")
.clone()
.attr("x", 10)
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.attr("font-size", "0.75rem")
.attr("font-family", "'Helvetica Neue', sans-serif")
.text("Number of starting values (n) in bin");
svg.selectAll(".tick line").remove();
return svg.node();
}