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.
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
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)