coloredDynamicNetwork: This procedure produces a dynamic graph with colors. It...

Description Usage Arguments Value Examples

View source: R/BallMapper.R

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

1
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

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)

BallMapper documentation built on Aug. 21, 2019, 1:06 a.m.