viewof facetedSelection = Plot.plot({
facet: {data: penguins, x: "species"},
marks: [
Plot.dot(penguins, { x: "culmen_length_mm", y: "culmen_depth_mm" }),
Plot.dot(penguins, Plot.brush({ x: "culmen_length_mm", y: "culmen_depth_mm", fill: "species", stroke:"black" }))
]
})