Christoph Groth writes:
> show_figures([Figure().add_subplot(1,1,1).plot(range(10)),
> Figure().add_subplot(1,1,1).plot([x*x for x in range(10)])])
This wouldn't work of course, it should be rather
f1 = Figure()
f1.add_subplot(1, 1, 1).plot(range(10))
f2 = Figure()
f2.add_subplot(1
Dear matplotlib developers,
I prefer to use matplotlib in my scripts without its state-machine
wrapper and it works mostly nicely. One thing which is missing
currently is a standard way to display a bunch of figures using the
default backend. What I have to do now is:
from matplotlib.pyplot imp