Numerical Variable and Categorical Variable

Boxplots help here (or color-coded density plots).

ggplot(penguins, aes(x = species, y = body_mass_g)) +
  geom_boxplot()