jupyter-live-graph

Create and update graphs live in Jupyter


License
MIT
Install
pip install jupyter-live-graph==0.1.0

Documentation

jupyter-live-graph

Let's you create a graph in a Jupyter cell, and update that graph live in other cells. Uses matplotlib.draw().

To install:

pip install jupyter-live-graph

Then to use it it's as simple as:

%matplotlib notebook
from livegraph import Draw

draw = Draw()
# ---
for i in range(1000):
  draw.graph([j for j in range(i)])

License

MIT

Contributing

This project is wide open to pull requests.