Intro Thoughts
Experiment
library(tidyverse)
library(ggwipe)
palmerpenguins::penguins |>
ggplot() +
aes(x = bill_length_mm) + labs(x = 'wait time (min)') +
aes(y = bill_depth_mm) + labs(y = 'erupt time (min)') +
geom_density2d() +
aes(color = species)
## Warning: Removed 2 rows containing non-finite outside the scale range
## (`stat_density2d()`).
last_plot_wipe() +
ggdensity::geom_hdr() +
aes(fill = species)
## Warning: Removed 2 rows containing non-finite outside the scale range
## (`stat_hdr()`).