Description Usage Arguments Value Examples
This is a simple example of dynamic visualization using networkD3 library. This version do not implement coloring of vertices, just give a general overview of the edges.
1 | simpleDynamicNetwork(outputFromBallMapper, storeAsHtml = FALSE)
|
outputFromBallMapper, |
an output from BallMapper function. |
storeAsHtml, |
if set true, it will store the graph in HTML file. |
None
1 2 3 4 5 6 | var <- seq(from=0,to=6.3,by=0.1)
points <- as.data.frame( cbind( sin(var),cos(var) ) )
values <- as.data.frame( sin(var) )
epsilon <- 0.25
l <- BallMapper(points,values,epsilon)
simpleDynamicNetwork(l)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.