[Matplotlib-users] How to show interactive plot window from program

2010-04-20 Thread Nikolaus Rath
Hello, When I'm calling the pyplot.plot function from ipython, I get a nice dialog in which I can zoom, pan save. How can I achieve the same thing from a non-interactive program? I tried fig = plt.figure() ax = fig.add_subplot(111) ax.contourf(stuff) fig.show() but this

Re: [Matplotlib-users] How to show interactive plot window from program

2010-04-20 Thread Ryan May
On Tue, Apr 20, 2010 at 8:56 AM, Nikolaus Rath nikol...@rath.org wrote: Hello, When I'm calling the pyplot.plot function from ipython, I get a nice dialog in which I can zoom, pan save. How can I achieve the same thing from a non-interactive program? I tried    fig = plt.figure()    ax