Faceted scatterplots

Scatterplot of culmen length vs. culmen depth for the Palmer Penguins dataset, faceted

<Plot
    frame
    grid
    height={600}
    inset={10}
    marginTop={35}
    marginBottom={40}>
    <Dot
        data={penguins}
        x="culmen_length_mm"
        y="culmen_depth_mm"
        r={2}
        opacity={0.1} />
    <Dot
        data={penguins}
        x="culmen_length_mm"
        y="culmen_depth_mm"
        fy="species"
        fx="sex" />
</Plot>
Improve this page
Last update at: 2025/11/24