This procedure store the Ball Mapper graph in a file in the following format:
storeBallMapperGraphInFile(outputFromBallMapper, filename = "BM_graph")output from the BallMapper procerure.
the name of the file to store the data.
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")