Note: Active development has moved to networkD3.
Tools for creating D3 JavaScript network, tree, dendrogram, and Sankey graphs from R.
Click the image to see a working example:
This is the code to create the graph:
# Create fake data
Source <- c("A", "A", "A", "A", "B", "B", "C", "C", "D")
Target <- c("B", "C", "D", "J", "E", "F", "G", "H", "I")
NetworkData <- data.frame(Source, Target)
# Make network graph
d3SimpleNetwork(NetworkData, height = 300, width = 700)
Many more examples can be found on the package's main page.
You can install d3Network using the devtools package and the following code:
devtools::install_github('christophergandrud/d3Network')