Plot.plot({
color: { scheme: "ylgnbu", type: "sqrt" },
marks: [
Plot.rect(
simulated,
Plot.bin(
{ fill: "count" },
{ x: "time", y: "duration", r: 1, thresholds: 50 }
)
),
Plot.lineY(
simulated,
Plot.binX(
{ y: "median" },
{ x: "time", y: "duration", r: 1, thresholds: 50, curve: "step" }
)
),
Plot.tickX([tfix], { stroke: "brown" }),
Plot.tickY([0])
]
})