Re: [Matplotlib-users] pyplot.show

2009-09-19 Thread Thomas Hrabe
suggestionst? Thanks so far! 2009/9/19 sunqiang > may be you can try pyplot.ion()? it turns interactive mode on. > Hope this helps. > On Sat, Sep 19, 2009 at 1:11 PM, Thomas Hrabe wrote: > >> >> Hi all, >> >> I am a beginner with matplotlib and doing my

Re: [Matplotlib-users] pyplot.show

2009-09-18 Thread Thomas Hrabe
starting with ipython -pylab solves it... thanks for the help! Thomas Hrabe wrote: > > Hi all, > > I am a beginner with matplotlib and doing my first steps with python > plotting. > However, I learned that pyplot.show really forces the display of already > exi

Re: [Matplotlib-users] pyplot.show

2009-09-18 Thread Thomas Hrabe
suggestionst? Thanks so far! >may be you can try pyplot.ion()? it turns interactive mode on. >Hope this helps. >On Sat, Sep 19, 2009 at 1:11 PM, Thomas Hrabe wrote: > > Hi all, > > I am a beginner with matplotlib and doing my first steps with python > plotting. &

[Matplotlib-users] pyplot.show

2009-09-18 Thread Thomas Hrabe
Hi all, I am a beginner with matplotlib and doing my first steps with python plotting. However, I learned that pyplot.show really forces the display of already existing plots. For instance, when I type In[2]: pyplot.plot([1,2,3]) Out[2]: [] nothing happens until I type In[3]: pyplot.show()