使用链接刷子与闪亮应用程序中的ggraph网络图

时间:2017-09-21 23:52:58

标签: r shiny igraph ggraph

我有一个Shiny应用程序,其中我使用ggraph呈现网络图,类似于下面的应用程序:

library(ggraph)
library(igraph)
library(shiny)

ui <- fluidPage(
    plotOutput("plot", brush = brushOpts(id = "plot_brush"))
)

server <- function(input, output) {
  graph <- graph_from_data_frame(highschool)

  output$plot <- renderPlot({
    ggraph(graph) + 
      geom_edge_link(aes(colour = factor(year))) + 
      geom_node_point()
  })

  observe(print(
    brushedPoints(as_data_frame(graph, what = "vertices"), input$plot_brush)
        )
    )
}

shinyApp(ui, server)

我要做的是当您在图表中单击并拖动以捕获某些节点时,我可以检查有关捕获的特定点的更多信息。现在,我只是使用observe({print()}),这样我就可以在控制台中看到被捕获的内容。

我的问题是,每当我在应用程序中选择一个区域时,无论选择的区域中包含多少个节点,我都会在控制台中返回0行。如何让它返回所选区域中包含的节点?

1 个答案:

答案 0 :(得分:-1)

This response向我展示了道路:

library(ggraph)
library(igraph)
library(shiny)
library(dplyr)

ui <- fluidPage(
  plotOutput("plot", brush = brushOpts(id = "plot_brush"))
)

server <- function(input, output) {
  graph2 <- graph_from_data_frame(highschool)

  set.seed(2017)
  p <- ggraph(graph2, layout = "nicely") + 
    geom_edge_link() + 
    geom_node_point()

  plot_df <- ggplot_build(p)

  coords <- plot_df$data[[2]]

  output$plot <- renderPlot(p)

  coords_filt <- reactive({
    if (is.null(input$plot_brush$xmin)){
      coords
    } else {
    filter(coords, x >= input$plot_brush$xmin, 
           x <= input$plot_brush$xmax, 
           y >= input$plot_brush$ymin, 
           y <= input$plot_brush$ymax)
    }
  })

  observe(print(
    coords_filt()
  )
  )

}

shinyApp(ui, server)