[Matplotlib-users] Safe SVN version

2009-01-23 Thread jason-sage
Hello all, I am at a Sage days workshop and one of my goals is to update matplotlib in Sage. We want to pull from SVN since there are some (very *nice*) arrow-drawing features only in SVN. Is there any recent commit points that we want to avoid because of stability? If not, we'll probably u

[Matplotlib-users] plotting a circle in log space

2009-01-23 Thread Michael Hearne
I have discovered, from the mailing list, the easy way to draw a circle in linear space: cx = 700 cy = 700 r = 1000 xmin = cx - r xmax = cx + r ymin = cy - r ymax = cy + r cir = Circle( (cx,cx), radius=r,facecolor='w',edgecolor='b') a = gca() a.add_patch(cir) axis([xmin,xmax,ymin,ymax]) axis('

Re: [Matplotlib-users] ImportError: No module named pyplot

2009-01-23 Thread mzs
Thank you. I finally upgraded my Ubuntu system, pretty easy, and now pylab is available. Thank you to everyone on this thread for your input. BTW, matplotlib is very nicely done, useful, and appreciated. Marc Sandro Tosi-4 wrote: > > On Wed, Jan 21, 2009 at 15:01, mzs wrote: >> >> Thank y

Re: [Matplotlib-users] documentation errors

2009-01-23 Thread Ryan May
keith.bri...@bt.com wrote: > At _http://matplotlib.sourceforge.net/_, the "Show Source" link doesn't > work. This is because, unlike the other pages, there is no ReST source that is used to generate the main page. John/Mike, any ideas what to do? > At _http://matplotlib.sourceforge.net/_, the t

[Matplotlib-users] documentation errors

2009-01-23 Thread keith.briggs
At http://matplotlib.sourceforge.net/, the "Show Source" link doesn't work. At http://matplotlib.sourceforge.net/, the table of functions links "show" to http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot. show, but there is no such function mentioned there. At http://matplo

Re: [Matplotlib-users] plot a data stream with matplotlib

2009-01-23 Thread Simone Gabbriellini
that's nice!!! thank you... anyway, I wanted to take advantage of the Traits implementation of my app... simone 2009/1/23 eliben : > > > > Simone Gabbriellini-3 wrote: >> >> Dear List, >> >> I have some variables I want to plot... the values of those variable >> change in time... I would like to

Re: [Matplotlib-users] plot a data stream with matplotlib

2009-01-23 Thread eliben
Simone Gabbriellini-3 wrote: > > Dear List, > > I have some variables I want to plot... the values of those variable > change in time... I would like to plot the result with a traditional > line plot > > those variables are traits of a class (don't know if this can make a > difference...) >