Re: [Matplotlib-users] Why do I need to call show with ipython -pylab
Hi Jon, I can reproduce you observation using the following program > - from pylab import plot, arange, ion ##ion() plot(arange(10), arange(10)) > -- uncommenting the second line resolves the problem a
[Matplotlib-users] Why do I need to call show with ipython -pylab
Hi, I have a simple script that plots x,y vals in an animation called anim.py data = read('data.dat') for i in range(10): plot(data[:,0], data[:,1]) I am using ipython -pylab but when I do run anim.py it doesn't show anything until I say show(). On the other hand, if I do one of these plot