Skip to content

R package, using vis.js library for network visualization

Notifications You must be signed in to change notification settings

JSobral/visNetwork

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

visNetwork

R package, using vis.js library for network visualization

visNetwork is now update on DataKnowledge github. https://github.com/dataknowledge/visNetwork

devtools::install_github("bthieurmel/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://bthieurmel.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 78.7%
  • JavaScript 20.4%
  • CSS 0.9%