与旧式悬停相比,ggplot hoverOpts没有按预期工作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了与旧式悬停相比,ggplot hoverOpts没有按预期工作相关的知识,希望对你有一定的参考价值。
我正在尝试根据此处的代码为我的绘图构建悬停功能:SO question in solution 3
但是,在ggplot2中,悬停功能已被改变,但是当我改变时
plotOutput("distPlot", hover = "plot_hover", hoverDelay = 0),
至
plotOutput("distPlot", hoverOpts(id = "plot_hover", delay = 0),
悬停不起作用的一半时间(直到我点击某处似乎。我在这里遗漏了什么?
还尝试添加delayType
参数,但似乎没有帮助。
library(shiny)
library(ggplot2)
ui <- fluidPage(
tags$head(tags$style('
#my_tooltip {
position: absolute;
width: 300px;
z-index: 100;
padding: 0;
}
')),
tags$script('
$(document).ready(function() {
// id of the plot
$("#distPlot").mousemove(function(e) {
// ID of uiOutput
$("#my_tooltip").show();
$("#my_tooltip").css({
top: (e.pageY + 5) + "px",
left: (e.pageX + 5) + "px"
});
});
});
'),
selectInput("var_y", "Y-Axis", choices = names(iris)),
plotOutput("distPlot", hover = "plot_hover", hoverDelay = 0), ## issue is here
uiOutput("my_tooltip")
)
server <- function(input, output) {
output$distPlot <- renderPlot({
req(input$var_y)
ggplot(iris, aes_string("Sepal.Width", input$var_y)) +
geom_point()
})
output$my_tooltip <- renderUI({
hover <- input$plot_hover
y <- nearPoints(iris, input$plot_hover)[input$var_y]
req(nrow(y) != 0)
wellPanel(dataTableOutput("vals"), style = 'background-color:#fff; padding:10px; width:400px;border-color:#339fff')
})
output$vals <- renderDataTable({
hover <- input$plot_hover
y <- t(nearPoints(iris, input$plot_hover))
req(nrow(y) != 0)
DT::datatable(y, colnames = rep("", ncol(y)), options = list(dom = '', searching = F, bSort = FALSE))
})
}
shinyApp(ui = ui, server = server)
答案
工作版本,评论中有修改:
library(shiny)
library(ggplot2)
ui <- fluidPage(
tags$head(tags$style('
#my_tooltip {
position: absolute;
width: 300px;
z-index: 100;
padding: 0;
}
')),
tags$script('
$(document).ready(function() {
// id of the plot
$("#distPlot").mousemove(function(e) {
// ID of uiOutput
$("#my_tooltip").show();
$("#my_tooltip").css({
top: (e.pageY + 5) + "px",
left: (e.pageX + 5) + "px"
});
});
});
'),
selectInput("var_y", "Y-Axis", choices = names(iris)),
plotOutput("distPlot", hover = hoverOpts(id = "plot_hover", delay = 0)),
uiOutput("my_tooltip")
)
server <- function(input, output) {
output$distPlot <- renderPlot({
req(input$var_y)
ggplot(iris, aes_string("Sepal.Width", input$var_y)) +
geom_point()
})
output$my_tooltip <- renderUI({
hover <- input$plot_hover
y <- nearPoints(iris, input$plot_hover)
req(nrow(y) != 0)
wellPanel(DT::dataTableOutput("vals"), style = 'background-color:#fff; padding:10px; width:400px;border-color:#339fff')
})
output$vals <- DT::renderDataTable({
hover <- input$plot_hover
y <- nearPoints(iris, input$plot_hover)
req(nrow(y)) != 0
DT::datatable(t(y), colnames = rep("", ncol(t(y))), options = list(dom = 't', searching = F, bSort = FALSE))
})
}
shinyApp(ui = ui, server = server)
以上是关于与旧式悬停相比,ggplot hoverOpts没有按预期工作的主要内容,如果未能解决你的问题,请参考以下文章
ggplotly - 仅在某些几何对象上返回工具提示悬停文本
R和Shiny:当悬停在Shiny上的绘图上时显示ggplot2数据值