notebook.community
Edit and run
That's what this creates.
In [11]: x = arange(10) y = arange(10) + random.normal(0, 1, 10) ion() plot((0, 12), (0, 12), '-') plot(x, y, 'x') axis((0, 12, 0, 12))
x = arange(10) y = arange(10) + random.normal(0, 1, 10) ion() plot((0, 12), (0, 12), '-') plot(x, y, 'x') axis((0, 12, 0, 12))
Out[11]: (0, 12, 0, 12)
(0, 12, 0, 12)
In [ ]: