如何才能在悬停时获得悬停日期而不是数字?
我的示例代码
require(plotly)
require(tidyverse)
dates <- c("02/27/92", "02/27/92", "01/14/92", "02/28/92", "02/01/92")
dat <- tibble(a = rnorm(5), b = as.Date(dates, "%m/%d/%y"))
p <- dat %>%
ggplot(aes(b, a)) +
geom_line()
ggplotly(p)
结果:
我希望b为Feb 01
而不是8066.我怎么能得到这个?