It'd be useful, if this would work to create tooltips ``` library(tidyverse) library(palmerpenguins) p <- penguins |> ggplot() + geom_blank(aes(flipper_length_mm, body_mass_g)) plotly::ggplotly(p) ```