Skip to content
R package, using vis.js library for network visualization
Branch: master
Clone or download
Latest commit c9a284f Apr 25, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
R doc -> docjs Mar 26, 2019
inst
man
vignettes some documentation clean / update Jul 30, 2017
DESCRIPTION good git conf ? Apr 25, 2019
LICENSE to 1.0.0 Apr 29, 2016
NAMESPACE some clean and update Jun 13, 2018
NEWS 2.0.7 Apr 1, 2019
README.md 2.0.7 Apr 1, 2019

README.md

CRAN Status Badge CRAN Downloads Badge

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

2.0.7 dev version

  • #307 : visClusteringByGroup, add collapse on double click

2.0.6 available on CRAN

  • Fix using FontAwesome icons in shinydashboard

alt text

Example

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"))
You can’t perform that action at this time.