vl
.markCircle({tooltip: true})
.encode(
vl.y().fieldN("row_number").axis(null),
vl.x().fieldQ("culmen_length_mm"),
vl.row().field("island"),
vl.color().fieldN("species"),
)
.data(
d3
.groups(penguins, (d) => d.island)
.map(([g, v]) => v.map((d, i) => ({ row_number: i, ...d })))
.flat()
)
.height(100)
.render()