Aliases: visNetworkEditor-module visNetworkEditorServer visNetworkEditorUI
Keywords:
### ** Examples ## Not run: ##D ##D nodes <- data.frame(id = 1:3, label = paste("Node", 1:3)) ##D edges <- data.frame(from = c(1,2), to = c(1,3), label = paste("Edge", 1:2)) ##D network <- visNetwork(nodes, edges) ##D ##D shiny::shinyApp(ui = shiny::fluidPage( ##D visNetworkEditorUI(id = "id1")), ##D server = function(input, output, session) { ##D shiny::callModule(visNetworkEditorServer, "id1", object = shiny::reactive(network)) ##D }) ##D ## End(Not run)