Metadata-Version: 2.1
Name: pyBallMapper
Version: 0.1.0.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.1-blue)  

Python version of the Ball Mapper algorithm described in [arXiv:1901.07410 ](https://arxiv.org/abs/1901.07410) .  

### Installation  
```
pip install pyballmapper
```

### Basic usage
```
from pyballmapper import BallMapper
bm = BallMapper(points = my_pointcloud,    # the pointcloud, as a numpy array
                epsilon = 0.25)            # the radius of the covering balls
```

For more info check out the [example notebooks](https://github.com/dgurnari/pyBallMapper/tree/main/notebooks) .
