pyBallMapper
Python version of the BallMapper algorithm described in arXiv:1901.07410 .
Installation
pip install pyballmapper
Basic usage
from pyballmapper import BallMapper
bm = BallMapper(X = my_pointcloud, # the pointcloud, as a array-like of shape (n_samples, n_features)
eps = 0.25) # the radius of the covering balls
For more info check out the example notebooks .