simpleDynamicNetwork {BallMapper}R Documentation

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.

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

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

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)

[Package BallMapper version 0.2.0 Index]