Re: [Matplotlib-users] exclude something from legend

2010-08-26 Thread Tinne De Laet
Hi Carlos, On Thu, Aug 26, 2010 at 04:49, Carlos Grohmann carlos.grohm...@gmail.com wrote: Hello all, Is there a way to tell MPL that something I plotted (like a series of Line2D, to create a grid) should not be considered for the legend? I'm plotting a lot of things, and because of these

Re: [Matplotlib-users] My Legend keeps growing! Help

2010-08-26 Thread Tinne De Laet
Hi , On Thu, Aug 26, 2010 at 05:47, dcarroll spanishcastlema...@gmail.com wrote: I am trying make a plot that is in a loop and replots when new data is updated. #IN A LOOP    fig = plt.figure(1,[10,10])    fig.clf    prop = matplotlib.font_manager.FontProperties(size=8)    xMin =

Re: [Matplotlib-users] plotting open symbols

2010-08-20 Thread Tinne De Laet
Hi Jonathan, On Fri, Aug 20, 2010 at 16:29, Jonathan Slavin jsla...@cfa.harvard.edu wrote: To all: I'm wondering if there is any way to make plots with open symbols, e.g. a circle.  I know how to use markers that look open, e.g. by doing something like, plot(x,y,marker='o',mfc='w') They

Re: [Matplotlib-users] Drawing Error Ellipses

2009-10-28 Thread Tinne De Laet
On Wed, Oct 28, 2009 at 9:06 AM, Eero Nevalainen eero.nevalai...@indagon.com wrote: Hi, I need to draw error ellipses on a scatterplot. I'm guessing someone has done this before. I've found some examples, such as this one

Re: [Matplotlib-users] Axes3D - Equal Aspect Ratio

2009-10-14 Thread Tinne De Laet
Hi Thomas,. I'm playing around with mpl_toolkits.mplot3d to represent a 3D scatter, but I need the axis' aspect to be 'equal'. I tried to : ax = Axes3D(fig) ax.set_aspect('equal') axis(scaled) worked for me. Tinne