File: app.R

package info (click to toggle)
r-cran-plotly 4.8.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,160 kB
  • sloc: sh: 19; makefile: 6
file content (36 lines) | stat: -rw-r--r-- 725 bytes parent folder | download
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)