plotly.R
plotly.R copied to clipboard
Could ggplotly support tooltips created by geom_blank?
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)