Plot.plot({
x: {
grid: true,
inset: 6,
type: scaleType
},
marks: [
Plot.ruleY(summary, Plot.groupY({x1: compute.iqr1, x2: compute.iqr2}, {x: "distance", y: "target"})),
Plot.barX(summary, Plot.groupY({x1: compute.quartile1, x2: compute.quartile3}, {x: "distance", y: "target", fill: "#ccc"})),
Plot.tickX(summary, Plot.groupY({x: "median"}, {x: "distance", y: "target", strokeWidth: 2})),
Plot.frame(),
],
facet: {
data: summary,
y: "keyword",
marginRight: 90
},
marginLeft: 90,
width,
height: 3000
})