Skip to content

R package, using vis.js library for network visualization

Notifications You must be signed in to change notification settings

ncdingari/visNetwork

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/

About

R package, using vis.js library for network visualization

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 76.2%
  • JavaScript 22.9%
  • CSS 0.9%