runPlot = (aspect) => ({
x: {nice: 10, axis: "top"},
y: {nice: 3},
facet: {data: leadtimes, [aspect.facet]: "series"},
color: {range: ["limegreen", "red"]},
marks: [
Plot.dot(leadtimes, {x: "hello", y: "leadtime", fill: "leadtime", r: "leadtime", title: "hello"}),
percentiles.map(percentileRule),
percentiles.map(percentileLabel),
customerLeadtime(leadtimes),
Plot.frame(),
]
})