coloredDynamicNetwork {BallMapper} | R Documentation |
This procedure produces a dynamic graph with colors. It allows zoom-in operation and displays information about vertices when they are clicked upon.
Description
This procedure produces a dynamic graph with colors. It allows zoom-in operation and displays information about vertices when they are clicked upon.
Usage
coloredDynamicNetwork(outputOfBallMapper, showLegend = FALSE)
Arguments
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. |
Value
None
Examples
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)
[Package BallMapper version 0.2.0 Index]