Re: [Matplotlib-users] Displaying several points with different colors

2007-03-12 Thread Matthieu Brucher
I manage to do what I wanted to do, it was not that easy - the colours were in an array I had to transform into an array of tuples, the autoscale did not function, I had to put in the fig.subplot the correct xlim and ylim -, but now it works like a charm. Many thanks. Matthieu 2007/3/9, John Hun

Re: [Matplotlib-users] Displaying several points with different colors

2007-03-12 Thread Matthieu Brucher
OK, I'm trying to the same but in 3D, and there, no documentaion. I tried to launch axes3d.py to see exactly what I can do, but the example file does not work. For instance, Axes3D takes two parameters for method __init__ and only one is provided. Did someone test it ? I'm trying to use collection

[Matplotlib-users] matplotlib._ns_transforms.so: undefined symbol: _ZNSs4_Rep20_S_empty_rep_storageE

2007-03-12 Thread Khare, Rishi
Hi All, I am using matplotlib-0.90.0 with numpy-1.0.1 for my python program which I later convert in to an executable with the help of pyinstaller, I am installing matplotlib-0.90.0 from source and it installs fine.when I create the executable of my program (I include matplotlib as a .pkg

Re: [Matplotlib-users] Displaying several points with different colors

2007-03-12 Thread Eric Firing
Matthieu Brucher wrote: > OK, I'm trying to the same but in 3D, and there, no documentaion. > I tried to launch axes3d.py to see exactly what I can do, but the > example file does not work. For instance, Axes3D takes two parameters > for method __init__ and only one is provided. Did someone test

Re: [Matplotlib-users] Displaying several points with different colors

2007-03-12 Thread Matthieu Brucher
There may be, but all 3D plotting is shaky right now. The 3D code is essentially unmaintained and unsupported. Eric Sad to hear this, I hope someone will enhance it :) Matthieu - Take Surveys. Earn Cash. Influence the

Re: [Matplotlib-users] Displaying several points with different colors

2007-03-12 Thread Eric Firing
Matthieu Brucher wrote: > I manage to do what I wanted to do, it was not that easy - the colours > were in an array I had to transform into an array of tuples, the > autoscale did not function, I had to put in the fig.subplot the correct > xlim and ylim -, but now it works like a charm. > Many t

Re: [Matplotlib-users] Displaying several points with different colors

2007-03-12 Thread Matthieu Brucher
What version of mpl are you using? The latest, I compiled it from the source as FC5 has a very old version - can't update myself the distribution - In recent versions, the collections should accept 2D numpy arrays as well as any sequence of tuples (and several other possibilities). For

[Matplotlib-users] PDF backend problem

2007-03-12 Thread kc106_2005-matplotlib
Hi list, First of all, thanks to Bill Dandreta and Jouni Seppanen for helping with my combining single page pdf into multipage pdf question. I tried both method and went with pdftex because it's very simple (and fits my need). Now, I am running into another problem. Everything works fine up

Re: [Matplotlib-users] PDF backend problem

2007-03-12 Thread Jouni K . Seppänen
[EMAIL PROTECTED] writes: > Now, I am running into another problem. Everything works fine up to > 8 page plots. Starting with the 9th page, MPL chokes at line 1084 in > backend_pdf.py and couldn't find the cooresponding ttf file > (VeraSe.ttf) but it had no problem reading that file for the first

Re: [Matplotlib-users] PDF backend problem

2007-03-12 Thread Jouni K . Seppänen
I fixed another filehandle leak in the pdf backend, so here's a more complete patch. There are also several cases of file(...) being passed to pickle.dump or pickle.load in font_manager.py. I was going to take care of these by writing some utility functions, but I started wondering why the import o