visNetwork
R package, using vis.js library for network visualization. visNetwork is now available on CRAN.
Online documentation
http://datastorm-open.github.io/visNetwork
And have a look to multiple R examples, vis.js documentation (visDocumentation).
News
1.0.2 available on CRAN
Update network in shiny using
visNetworkProxy(lot of functionalities,?visNetworkProxy)Enabled
highlightNearest&selectedBywithiconsand / orimageEnabled hover for
highlightNearestand fix/improve performance with highdegreemultiple groups selection / title to network & legend / ionicons icons possibilities. See ?addIonicons
new function
visSaveto save as html andvisExportto save as png/jpeg (shiny and browser only)Better performance with
visIgraphLayouthave a look to
visIgraphto plot visNetwork object from igraph object (Little bit experimental)Add custom legend with
visLegend
Example
install.packages("visNetwork")
# devtools::install_github("datastorm-open/visNetwork") for developpement 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"))