create_plot = function (pts) {
let m = d3.mean(pts);
let s = d3.deviation(pts);
let w = 800;
let h = 0.4 * w;
let f = (x) =>
Math.exp((-(x - m) * (x - m)) / (2 * s * s)) / (Math.sqrt(2 * Math.PI) * s);
let marks = [
Plot.rectY(
pts,
Plot.binX(
{
y: (a, bin) => {
return a.length / pts.length / (bin.x2 - bin.x1);
},
title: "proportion"
},
{ x: (pt) => pt, fill: "#b00" }
)
),
Plot.dot(pts, {
x: (x) => x,
y: (_) => 0,
stroke: "black",
fill: "black",
opacity: 0.2
}),
Plot.ruleX([0]),
Plot.ruleY([0])
];
if (show_curve) {
marks.push(
Plot.line(build_samples(f, -1, 12, { N: 100 }), {
strokeWidth: 5,
stroke: "#111",
opacity: 0
})
);
}
let plot = Plot.plot({
x: { domain: [0, 11] },
y: { domain: [0, 1] },
width: w,
height: h,
marks: marks
});
d3.select(plot)
.selectAll("rect")
.on("pointerenter", function () {
d3.select(this).attr("opacity", 0.5);
})
.on("pointerleave", function () {
d3.select(this).attr("stroke", null).attr("opacity", null);
})
.nodes()
.forEach((bar) =>
tippy(bar, { content: d3.select(bar).select("title").text() })
);
d3.select(plot).selectAll("rect").select("title").remove();
return plot;
}