function markPointInterval(data, {y, x, fill, text, fillText}){
const marks = [
Plot.ruleY(data,
Plot.groupY({x1: "min", x2: "max"},
{y: y, x: x, stroke: fill, strokeWidth:2})
),
Plot.ruleY(data,
Plot.groupY({x1: (D) => d3.quantile(D, 0.25),x2: (D) => d3.quantile(D, 0.75)},
{y: y, x: x, stroke: fill, strokeWidth:4.5})),
Plot.dot(data,
Plot.groupY({x: "median"},
{y: y, x: x, fill: fill, r:9})),
Plot.text(data,
Plot.groupY({x: "median", text: d=> d3.median(d).toFixed(0)},
{y: y, x: x, fill: fillText, text: text,
fontSize:8})),
]
return marks
}