Apparently usetex_demo.py and dannys_example.py are same
(matplotlib/examples).
The latter might be deleted if no reference exist for that file.
--
Gökhan
--
Come build with us! The BlackBerry® Developer Conference in SF
Jouni K. Seppänen wrote:
> I just happened to type getp(gca()) on matplotlib 0.99.0, and the output
> looks all garbled:
Fixed in r7780 (branch) and 7781 (trunk).
Eric
>
getp(gca())
> /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/matplotlib/axes.py:1269:
>
Hi,
add_line method sets label to something like "_line1" if not set.
def add_line(self, line):
if not line.get_label():
line.set_label('_line%d'%len(self.lines))
add_collection sets label to "collection1" if not set.
def add_collection(self, collection, autolim=True):
Good point. A test based on Sandro's example has been committed to SVN.
Mike
Andrew Straw wrote:
> Michael Droettboom wrote:
>
>> Yes -- a bug was introduced where non-finite values were no longer being
>> ignored by the data extents finder. This has now been fixed on the
>> 0.99.x branch
Michael Droettboom wrote:
> Yes -- a bug was introduced where non-finite values were no longer being
> ignored by the data extents finder. This has now been fixed on the
> 0.99.x branch (r7774) and the trunk.
>
Hi Mike,
This would seem like something useful to write a test for to make sure
t
2009/9/17 John Hunter :
> On Thu, Sep 17, 2009 at 9:30 AM, Michael Droettboom wrote:
>> Looks fine to me. We were offering to commit this to matplotlib, or
>> should I?
>
> You should let Fernando, so he can survive the annual purge of
> developers no longer committing :-)
Thanks :) I'll take c
Yes -- a bug was introduced where non-finite values were no longer being
ignored by the data extents finder. This has now been fixed on the
0.99.x branch (r7774) and the trunk.
Mike
Sandro Tosi wrote:
> Hello,
> with 0.99.{0, 1rc1} I have problem with this code:
>
> In [1]: import matplotlib.p
On Thu, Sep 17, 2009 at 9:30 AM, Michael Droettboom wrote:
> Looks fine to me. We were offering to commit this to matplotlib, or
> should I?
You should let Fernando, so he can survive the annual purge of
developers no longer committing :-)
---
Looks fine to me. We were offering to commit this to matplotlib, or
should I?
Mike
Fernando Perez wrote:
> Howdy,
>
> this fixes the ipython console sphinx extension to mark up output
> prompts as well. Mind if I put it in?
>
> Thanks,
>
> f
>
> maqroll[sphinxext]> diff -u ipython_console_high
Hello,
with 0.99.{0, 1rc1} I have problem with this code:
In [1]: import matplotlib.pyplot as plt
In [2]: import numpy as np
In [3]: x = np.arange(0., np.e, 0.01)
In [4]: y = np.log(x)
In [5]: print y[:2], y[-2:]
[ -Inf -4.60517019] [ 0.99325177 0.99694863]
In [6]: plt.plot(x, y);
In
10 matches
Mail list logo