Description Usage Arguments Value Examples
This procedure produces a dynamic graph with colors. It allows zoom-in operation and displays information about vertices when they are clicked upon.
1 | coloredDynamicNetwork(outputOfBallMapper, showLegend = FALSE)
|
outputOfBallMapper, |
an output from the BallMapper function |
showLegend, |
if set to TRUE a legend will be displayed indicating the coloring of the values of vertices. |
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)
coloredDynamicNetwork(l)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.