storeBallMapperGraphInFile {BallMapper}R Documentation

This procedure store the Ball Mapper graph in a file in the following format:

Description

This procedure store the Ball Mapper graph in a file in the following format:

Usage

storeBallMapperGraphInFile(outputFromBallMapper, filename = "BM_graph")

Arguments

outputFromBallMapper

output from the BallMapper procerure.

filename

the name of the file to store the data.

Value

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)) l <- BallMapper(points, values, 0.25) storeBallMapperGraphInFile(l,"my_favorite_BM_graph")


[Package BallMapper version 0.2.0 Index]