Plot.plot({
grid: true,
aspectRatio: 1,
inset: 10,
x: {tickSpacing: 80, label: "Culmen length (mm) →"},
y: {tickSpacing: 80, label: "↑ Culmen depth (mm)"},
color: {legend: true},
marks: [
Plot.frame(),
Plot.dot(penguins, {x: "culmen_length_mm", y: "culmen_depth_mm", stroke: "species"})
]
})