# Getting started [![version](https://img.shields.io/badge/version-0.3.1-blue)](https://pypi.org/project/pyBallMapper) [![Documentation Status](https://readthedocs.org/projects/pyballmapper/badge/?version=latest)](https://pyballmapper.readthedocs.io/en/latest/?badge=latest) Python version of the BallMapper algorithm described in [arXiv:1901.07410 ](https://arxiv.org/abs/1901.07410) . ## 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](https://github.com/dgurnari/pyBallMapper/tree/main/notebooks) or the [documentation](https://pyballmapper.readthedocs.io).