simpleDynamicNetwork: This is a simple example of dynamic visualization using...

Description Usage Arguments Value Examples

View source: R/BallMapper.R

Description

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.

Usage

1
simpleDynamicNetwork(outputFromBallMapper, storeAsHtml = FALSE)

Arguments

outputFromBallMapper,

an output from BallMapper function.

storeAsHtml,

if set true, it will store the graph in HTML file.

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)
simpleDynamicNetwork(l)

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