Metadata-Version: 2.1
Name: pyBallMapper
Version: 0.2.post1
Summary: Python implementation of the Ball Mapper algorithm.
Home-page: https://github.com/dgurnari/pyBallMapper
Author: Davide Gurnari
Author-email: davide.gurnari@gmail.com
License: LICENSE.txt
Description-Content-Type: text/markdown
License-File: LICENSE.md

# pyBallMapper

[![version](https://img.shields.io/badge/version-0.2-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) .  

### 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](https://github.com/dgurnari/pyBallMapper/tree/main/notebooks) .
