Plot.plot({
marginLeft: 70,
height: 600,
x: {
line: true
},
y: {
line: true,
padding: 0.2
},
marks: [
Plot.barX(
countries,
Plot.groupY(
{ x1: "min", x2: "max" },
{
x: "fert_rate",
y: "region",
fillOpacity: 0.3,
fill: "steelblue",
sort: { y: "x" }
}
)
),
Plot.tickX(
countries,
Plot.groupY(
{ x: "median" },
{ x: "fert_rate", y: "region", stroke: "red" }
)
),
Plot.text(
countries,
Plot.groupY(
{ x: "median" },
{ x: "fert_rate", y: "region", text: (d) => "median", fill: "red", textAnchor: "start", dx: 3, dy: -30 }
)
),
Plot.tickX(
countries,
Plot.groupY({ x: "mean" }, { x: "fert_rate", y: "region" })
),
Plot.text(
countries,
Plot.groupY(
{ x: "mean" },
{ x: "fert_rate", y: "region", text: (d) => "mean", fill: "black", textAnchor: "start", dx: 3, }
)
),
]
})