Re: [Matplotlib-users] Math text produces garbage output

2009-09-14 Thread Kamran Riaz Khan
On 09/14/2009 06:33 PM, Michael Droettboom wrote: > That *is* strange. I'm at a bit of a loss. Is it segfaulting? Can you > get a traceback from gdb? http://pastebin.com/f22e3f72f > Since I'm having no trouble with the FC11 packages, that suggests it's > something related to a difference in co

Re: [Matplotlib-users] error locating backends module

2009-09-14 Thread Damon McDougall
Forgot to cc this to the list, sorry about that. Hi Jeff, You don't happen to be in the same directory as a folder called 'matplotlib' when trying to import matplotlib.backends, do you? If so, try moving to a different directory before invoking python and importing matplotlib.backends. R

[Matplotlib-users] error locating backends module

2009-09-14 Thread Jeff Peery
hello, I'm trying to import matplotlib.backends but I get a message indicating that matplotlib has no module 'backends'. So I looked to confirm that it was there and it is. I also checked if other modules where available (by importing them from the command line) and it appears that all the modul

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread Robert Kern
On 2009-09-14 16:08 PM, Gökhan Sever wrote: > > > On Mon, Sep 14, 2009 at 3:45 PM, > wrote: > > Robert Kern wrote: > > prctile does not handle the case where the exact percentile lies > between two > > items. scoreatpercentile does. > > >

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread Gökhan Sever
On Mon, Sep 14, 2009 at 3:45 PM, wrote: > Robert Kern wrote: > > prctile does not handle the case where the exact percentile lies between > two > > items. scoreatpercentile does. > > > > > > If mlab is supposed to be compatible with matlab, then isn't this a > problem? > > From matlab, version 7

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread jason-sage
Robert Kern wrote: > prctile does not handle the case where the exact percentile lies between two > items. scoreatpercentile does. > > If mlab is supposed to be compatible with matlab, then isn't this a problem? From matlab, version 7.2.0.283 (R2006a) >> prctile([1 1 2 2 1 2 4 3 2 2 2 3 4

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread Robert Kern
On 2009-09-14 13:49 PM, Gökhan Sever wrote: > > > On Mon, Sep 14, 2009 at 12:30 PM, > wrote: > > I tried the following (most output text is deleted): > > In [1]: ob1=[1,1,2,2,1,2,4,3,2,2,2,3,4,5,6,7,8,9,7,6,4,5,5] > In [2]: import matplotlib.pyplot a

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread Gökhan Sever
On Mon, Sep 14, 2009 at 12:30 PM, wrote: > I tried the following (most output text is deleted): > > In [1]: ob1=[1,1,2,2,1,2,4,3,2,2,2,3,4,5,6,7,8,9,7,6,4,5,5] > In [2]: import matplotlib.pyplot as > plt > In [3]: > plt.figure() > In [4]: > plt.boxplot(ob1) > In [5]: > plt.savefig('test.png') > I

[Matplotlib-users] incorrect boxplot?

2009-09-14 Thread jason-sage
I tried the following (most output text is deleted): In [1]: ob1=[1,1,2,2,1,2,4,3,2,2,2,3,4,5,6,7,8,9,7,6,4,5,5] In [2]: import matplotlib.pyplot as plt In [3]: plt.figure() In [4]: plt.boxplot(ob1)

[Matplotlib-users] Questions regarding to the mathtex and tex usage

2009-09-14 Thread Gökhan Sever
Hello, I have two figures, one with mpl's mathtext and the other one with the latex as seen on the uploaded images: http://img10.imageshack.us/img10/9384/mathtext.png http://img188.imageshack.us/img188/5128/usetex.png 1-) How can I use the same fonts of mathtext figure (tick and label texts) o

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-14 Thread Christoph Gohlke
OK, I will build the final 0.99.1 installers with the --user-access-control=auto option (works on Python 2.6+). Christoph On 09/14/2009 08:22, John Hunter wrote: > On Mon, Sep 14, 2009 at 10:13 AM, Werner F. Bruhin > wrote: > >> Just installed it on Vista and saw the following issues so far. >

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-14 Thread John Hunter
On Mon, Sep 14, 2009 at 10:13 AM, Werner F. Bruhin wrote: > Just installed it on Vista and saw the following issues so far. Hey Werner, thanks for the reports. > - Installer is not running elevated - tracker item 2858636 added Christoph, can you take a look at this? > - the issue with __doc__

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-14 Thread Werner F. Bruhin
John Hunter wrote: > We are preparing a bugfix release of the 0.99 branch, and a release > candidate 0.99.1rc1 is available for testing. > > http://drop.io/xortel1# > Just installed it on Vista and saw the following issues so far. - Installer is not running elevated - tracker item 2858636 add

[Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-14 Thread John Hunter
We are preparing a bugfix release of the 0.99 branch, and a release candidate 0.99.1rc1 is available for testing. http://drop.io/xortel1# Please post any problems you find on the bug tracker http://sourceforge.net/tracker/?group_id=80706&atid=560720 and any patches on the patches tracker.

Re: [Matplotlib-users] can't get basemap working: undefined symbol: PyUnicodeUCS4_DecodeUTF8

2009-09-14 Thread Michael Droettboom
This is usually caused by a mismatch in the Unicode mode of the python interpreter and the extension module. Python can be built to use either 2-byte or 4-byte Unicode code points. If you build an extension on a Python interpreter that uses one, but use it on another, this error is the most co

Re: [Matplotlib-users] Math text produces garbage output

2009-09-14 Thread Michael Droettboom
That *is* strange. I'm at a bit of a loss. Is it segfaulting? Can you get a traceback from gdb? Since I'm having no trouble with the FC11 packages, that suggests it's something related to a difference in configuration. Are you doing anything unusual with fontconfig? Are you 64-bit or 32-bi