Hi ,
On Thu, Aug 26, 2010 at 05:47, dcarroll 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 = dates[1]
> xMax =
Hi Carlos,
On Thu, Aug 26, 2010 at 04:49, Carlos Grohmann
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 objects (without
> la
Hi Jonathan,
On Fri, Aug 20, 2010 at 16:29, Jonathan Slavin 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 are white in the ce
On Wed, Oct 28, 2009 at 2:59 PM, Michael Droettboom wrote:
> Eero Nevalainen wrote:
>>> 2) forgot a factor 2 for the width and height (it's the entire width
>>> not the `radius`)
>>>
>>
>> I'd even say that this is a documentation bug in the Ellipse class.
>> Too bad that they are multiplying by 0
On Wed, Oct 28, 2009 at 9:55 AM, Tinne De Laet
wrote:
> On Wed, Oct 28, 2009 at 9:06 AM, Eero Nevalainen
> wrote:
>> Hi,
>>
>> I need to draw error ellipses on a scatterplot. I'm guessing someone has
>> done this before.
>>
>> I
On Wed, Oct 28, 2009 at 9:06 AM, Eero Nevalainen
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
> http://matplotlib.sourceforge.net/examples/pylab_examples/ellipse_rotated.html
>
> That le
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
-