簡體   English   中英

ggplotly和geom_area:將鼠標懸停在某個區域(而非點)上時顯示信息

[英]ggplotly and geom_area : display informations when hovering over an area (not a point)

關於ggplotly圖,將鼠標懸停在特定點上時很容易顯示信息。 這段代碼可以完成這項工作:

toy_df=data.frame("t"=c(seq(1,10),seq(1,10)),
                  "value"=c(runif(10,0,10),2*runif(10,0,10)),
                  "event"=c(rep("A",10),rep("B",10)))

p <- ggplot() + geom_area(aes(y = value, x = t, fill=event), data = toy_df)
ggplotly(p)

但是,當我將鼠標懸停在某個區域上時,我想顯示信息。 因為就我而言,區域是我想能夠深入描述的事件。

ggplot2多邊形( geom_polygon )提供了可能的解決方案。
在下面,您可以找到一個非常原始的代碼,該代碼應闡明主要思想:

library(ggplot2)
library(plotly)
set.seed(1)
toy_df=data.frame("t"=c(seq(1,10),seq(1,10)),
                  "value"=c(runif(10,0,10),2*runif(10,0,10)),
                  "event"=c(rep("A",10),rep("B",10)))

# In order to create polygons like in geom_areas,
# two points on the x-axis must be added: one at t=1 and one at t=10
toy_df2 <- toy_df[NULL,]
for (k in unique(toy_df$event)) {
 subdf <- subset(toy_df, toy_df$event==k)
 nr <- nrow(subdf)
 row1 <- subdf[1,]
 row1$value <- 0
 row2 <- subdf[nr,]
 row2$value <- 0
 toy_df2 <- rbind(toy_df2, row1, subdf, row2)
}
# Stack polygons 
toy_df2$value[toy_df2$event=="A"] <- toy_df2$value[toy_df2$event=="A"] + 
                                     toy_df2$value[toy_df2$event=="B"]

# Calculate mean values for the two events: they will be displayed in the tooltip
toy_df2 <- toy_df2 %>% group_by(event) %>% mutate(mn=round(mean(value),3))

p <- ggplot(data = toy_df2, aes(y = value, x = t, fill=event, 
            text=paste0("Value:", mn,"<br>Event:", event))) + 
     geom_polygon()
ggplotly(p, tooltip="text")

在此處輸入圖片說明

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM