Metadata-Version: 2.4
Name: big_scatter
Version: 0.1.0
Summary: Simple jupyter widget to draw and explore a large set of 2D datapoints.
Author-email: Benoit Favre <benoit.favre@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/benob/big_scatter
Project-URL: Issues, https://github.com/benob/big_scatter/issues
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: IPython
Dynamic: license-file

# lineplot

A minimalist line plotting package for live updates from jupyter notebooks. Works on google colab.

## Installation

```bash
pip install lineplot
```

## Example usage

```python
from lineplot import LinePlot
import numpy as np
import time

plot = LinePlot('green', 'blue')
for i in range(100):
    plot.add(loss=1 / (i + 1), acc=1 - np.random.rand() / (i + 1))
    time.sleep(0.25)
```
