Skip to content

dioscuri-tda/pyBallMapper

Repository files navigation

pyBallMapper

version Documentation Status

Python version of the BallMapper algorithm described in arXiv:1901.07410 .

Jones 17

Install the package 📦

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 = 4.669)          # the radius of the covering balls

For more info check out the example notebooks or the documentation.