1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
library(shiny)
library(plotly)
ui <- fluidPage(
plotlyOutput("plot"),
verbatimTextOutput("data")
)
mtcars$id <- row.names(mtcars)
server <- function(input, output, session) {
output$plot <- renderPlotly({
plot_ly(mtcars, x = ~disp, y = ~mpg) %>%
add_markers(key = ~id) %>%
layout(dragmode = "select") %>%
highlight("plotly_selected")
})
selected <- reactiveVal(rep(FALSE, nrow(mtcars)))
selected_data <- reactive({
ed <- event_data("plotly_selected")
if (is.null(ed)) return(NULL)
new <- mtcars[["id"]] %in% ed[["key"]]
selected(selected() | new)
mtcars[selected(), ]
})
output$data <- renderPrint({
selected_data()
})
}
shinyApp(ui, server)
|