Plot332.plot({
marginLeft: 80,
fy: { paddingInner: 0.3 },
x: { inset: 10, ticks: 5 },
y: { label: null },
facet: { data, x: "species", columns: 2 },
marks: [
Plot332.frame(),
Plot332.dot(data, { x: "bill_length", y: "sex", fill: "island" }),
Plot332.text(
data,
Plot.selectFirst({
text: "species",
x: 60,
y: () => null,
textAnchor: "end",
fontWeight: "bold"
})
)
]
})