在geom_rect系列中显示悬停工具提示可以通过使用ggplot2包中的geom_rect函数和ggplot2包中的tooltip参数来实现。具体步骤如下:
install.packages("ggplot2")
library(ggplot2)
data <- data.frame(
xstart = c(1, 2, 3, 4),
xend = c(2, 3, 4, 5),
ystart = c(1, 2, 3, 4),
yend = c(2, 3, 4, 5),
label = c("Rect1", "Rect2", "Rect3", "Rect4")
)
p <- ggplot(data, aes(xmin = xstart, xmax = xend, ymin = ystart, ymax = yend, fill = label, tooltip = label))
p <- p + geom_rect()
p <- p + scale_fill_manual(values = c("Rect1" = "red", "Rect2" = "blue", "Rect3" = "green", "Rect4" = "yellow"))
p <- p + theme_minimal()
plotly::ggplotly(p)
这样,就可以在geom_rect系列中显示悬停工具提示了。当鼠标悬停在矩形上时,将显示矩形的标签信息。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云