gpt4 book ai didi

r - 如何从 Shiny 中的 plotly 事件中获取方面数据

转载 作者:行者123 更新时间:2023-12-05 07:26:48 25 4
gpt4 key购买 nike

我正在尝试 shiny 包括一些 plotly plotly 。我想使用 react 事件,所以当我点击绘图时,另一个绘图会根据过滤后的数据进行更新。问题是我想要点击事件的 plotly 有方面,我想根据点击的方面过滤数据。但据我所知,方面信息不会在事件数据中发回。

我简化了 shiny plotly events 的例子包含方面(请参阅下面的 reprex),但没有任何事件接收到方面信息。特别是,我感兴趣的 event_data("plotly_click") 没有在任何地方获得被点击的方面。

library(plotly)
library(shiny)

ui <- fluidPage(
plotlyOutput("plot"),
verbatimTextOutput("hover"),
verbatimTextOutput("click"),
verbatimTextOutput("brush"),
verbatimTextOutput("zoom")
)

server <- function(input, output, session) {

output$plot <- renderPlotly({
# use the key aesthetic/argument to help uniquely identify selected observations
key <- row.names(mtcars)
p <- ggplot(mtcars, aes(x = mpg, y = wt, colour = factor(vs), key = key)) +
geom_point() +
facet_grid(rows = "gear")
ggplotly(p) %>% layout(dragmode = "select")
})


output$hover <- renderPrint({
d <- event_data("plotly_hover")
if (is.null(d)) "Hover events appear here (unhover to clear)" else d
})

output$click <- renderPrint({
d <- event_data("plotly_click")
if (is.null(d)) "Click events appear here (double-click to clear)" else d
})

output$brush <- renderPrint({
d <- event_data("plotly_selected")
if (is.null(d)) "Click and drag events (i.e., select/lasso) appear here (double-click to clear)" else d
})

output$zoom <- renderPrint({
d <- event_data("plotly_relayout")
if (is.null(d)) "Relayout (i.e., zoom) events appear here" else d
})


}

shinyApp(ui, server)

我一直在谷歌搜索,但找不到解决方案。有什么我可以传递给渲染函数的,例如,它确实获得了构面并可以将它发送回事件数据吗?

最佳答案

好吧,您可以在改编的示例代码中看到它们“使用关键美学/参数来帮助唯一地识别选定的观察结果”。为什么不用它来识别小平面?

您只需调整代码中的一行,更改 aes() 中的 key = gear

关于r - 如何从 Shiny 中的 plotly 事件中获取方面数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54261051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com