次のヒストグラムで、各ビンの下限と上限をggplotly のツールチップ テキストとして含めるにはどうすればよいですか?
library(ggplot2)
library(plotly)
csub<-data.frame(Anomaly10y = rpois(50,5))
p <- ggplot(csub,aes(x=Anomaly10y)) +
stat_bin(binwidth=1, aes(label1 = min(Anomaly10y, na.rm = T), label2 =
max(Anomaly10y, na.rm = T)))
ggplotly(p, tooltip = c("label1", "label2"))
前もって感謝します