Re: [Matplotlib-users] Stopping Legend From Overlapping the Graph

2009-06-26 Thread guillaume ranquet
I forgot to CC the list :S and I updated to svn trunk and it now works fine :) guillaume ranquet wrote: this question raised my interest and I tried It. unfortunately, I get errors :( when executing the demo source code linked, I get $ python ~/testmpl.py Traceback (most recent call

[Matplotlib-users] install error, libz, ld, lz

2009-06-26 Thread Jack Yu
Hi everyone, I am trying to install the latest version of matplotlib from svn. However, after cd-ing into the matplotlib directory, and running python setup.py install --prefix=${path}, I get the following error: /usr/bin/ld: skipping incompatible /usr/lib/libz.so when searching for -lz

Re: [Matplotlib-users] Histogram with multiple data

2009-06-26 Thread Uma S
Hi, I have the same problem. If you found the solution could you please post? Thanks uma Yves-Alexandre wrote: Hi, I'm trying to add label to a histogram with multiple data. The doc says label can also be a sequence of strings but when I try: plt.hist([listA, listB, listC],

Re: [Matplotlib-users] Matplot Numpy possible bug !

2009-06-26 Thread Mariette
Hi and thanks for the answer !! no more trouble :) Jerome Sandro Tosi a écrit : On Mon, Jun 22, 2009 at 13:33, jmariettejerome.marie...@toulouse.inra.fr wrote: Hi everybody, I have some probleme with Matplot/numpy ! I'm using matplot v0.91.2 and I'm trying to get the hist function

[Matplotlib-users] transformation coordinates not correct

2009-06-26 Thread Paul_J_R
I am trying to display an image with coordinates from a worldfile so that i can plot GPS points on it later, but after i make the transformation the axes coordinates are unchanged and the y axis is upside down. My code so far is this: fig=plt.figure() ax=fig.add_subplot(2,1,1)

Re: [Matplotlib-users] install error, libz, ld, lz

2009-06-26 Thread Sandro Tosi
Hello Jack, On Wed, Jun 24, 2009 at 22:07, Jack Yujackchungchie...@googlemail.com wrote: Hi everyone, I am trying to install the latest version of matplotlib from svn.  However, after cd-ing into the matplotlib directory, and running python setup.py install --prefix=${path}, I get the

Re: [Matplotlib-users] Histogram with multiple data

2009-06-26 Thread Jae-Joon Lee
I guess you're providing an input data with a wrong shape. aa = np.transpose([listA, listB, listC]) plt.hist(aa, bins=4, histtype='bar', alpha=0.75,rwidth=0.85,label=['A','B','C']) Regards, -JJ On Thu, Jun 25, 2009 at 1:37 AM, Uma Suma.sunde...@gmail.com wrote: Hi, I have the same