Skip to content
R package, using vis.js library for network visualization
Branch: master
Clone or download
Pull request Compare This branch is 542 commits behind datastorm-open:master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
R
inst
man
DESCRIPTION
NAMESPACE
NEWS
README.md

README.md

visNetwork

R package, using vis.js library for network visualization

devtools::install_github("dataknowledge/visNetwork")

require(visNetwork)
?visNetwork

nodes <- data.frame(id = 1:3)
edges <- data.frame(from = c(1,2), to = c(1,3))
visNetwork(nodes, edges)

A page of examples is under construction, and available at http://dataknowledge.github.io/visNetwork/

You can’t perform that action at this time.