我正在尝试将R与闪亮的应用程序结合使用,但是当我最大化后者的窗口时,该绘图似乎会丢失一些数据。 举一个具体的例子,我尝试了这段代码:
library(shiny)
library(plotly)
ui <- fluidPage(
plotlyOutput("plot"),
verbatimTextOutput("event")
)
server <- function(input, output) {
# renderPlotly() also understands ggplot2 objects!
output$plot <- renderPlotly({
plot_ly(mtcars, x = ~mpg, y = ~wt)
})
output$event <- renderPrint({
d <- event_data("plotly_hover")
if (is.null(d)) "Hover on a point!" else d
})
}
shinyApp(ui, server)
有人知道如何解决吗?