notebook.community
Edit and run
In [ ]: from pywr.core import Model from pywr.notebook import draw_graph model = Model.load("models/simple1.json") print(model) print("nodes:", len(model.nodes)) draw_graph(model)
from pywr.core import Model from pywr.notebook import draw_graph model = Model.load("models/simple1.json") print(model) print("nodes:", len(model.nodes)) draw_graph(model)
In [ ]: