And have a look to multiple R examples, vis.js documentation (visDocumentation
).
2.0.4
available on CRANmain
argument to selectedBy
and nodesIdSelection
sparkline
graphics in visTree
visHclust
for visualize Hierarchical cluster analysisvisNetworkEditor
and module visNetworkEditorUI
to use visConfigure
javascript functionnalities in R and shinyzoom
to visLegend
input$network_initialized
background
to visNetwork
visTreeEditor
bug using rpart objectvisTreeEditor
: add complexity parameterslayout
control in visIgraph
& visIgraphLayout
highlightNearest/selectedBy
collapse
features (?visOptions
)visGetBoundingBox
, visGetConnectedEdges
, visGetConnectedNodes
, visGetEdges
, visGetNodes
, visGetPositions
, visGetScale
, visGetSelectedEdges
, visGetSelectedNodes
, visGetSelection
, visGetViewPosition
visTree
, to visualize rpart object, visTreeEditor
and visTreeModuleServer
install.packages("visNetwork")
# devtools::install_github("datastorm-open/visNetwork") for development version
require(visNetwork)
?visNetwork
# minimal example
nodes <- data.frame(id = 1:3)
edges <- data.frame(from = c(1,2), to = c(1,3))
visNetwork(nodes, edges)
# vignette
vignette("Introduction-to-visNetwork")
# full javascript documentation
visDocumentation()
# shiny example
shiny::runApp(system.file("shiny", package = "visNetwork"))