Re: [Matplotlib-users] Change the line width of a legend

2007-09-18 Thread Jouni K . Seppänen
yves frederix [EMAIL PROTECTED] writes: I was wondering if it is possible to change the line width of the border around a legend. Yes, e.g. lg=legend(...) lg.get_frame().set_linewidth(0.1) Also, if there is a way of creating the legend without the border at all, I would be happy to hear

Re: [Matplotlib-users] Change the line width of a legend

2007-09-18 Thread yves frederix
lg=legend(...) lg.get_frame().set_linewidth(0.1) Also, if there is a way of creating the legend without the border at all, I would be happy to hear about it. Does setting the line width to zero do what you want? Works like a charm. Thanks! YVES

[Matplotlib-users] py2exe with pylab

2007-09-18 Thread Emmanuel
Hi, I got the setup.py given by Werner in an old thread (message from april 4th 2007). I putted code thereafter. I installed matplotlib 0.90.1/ python 2.5 on windows XP When I run the setup, it make an exception when using matplotlib.get_py2exe_datafiles() : -- 13 mpdir, mpfiles =

[Matplotlib-users] runtime error

2007-09-18 Thread Daniel Fish
Could anyone explain why I get a runtime error when using pylab.ion? (see below) I am running the latest version of matplotlib on Python 2.5 (windows) Thanks, Daniel Fish #---Offending code import pylab pylab.ion() pylab.plot(range(10)) #-

Re: [Matplotlib-users] runtime error - IGNORE

2007-09-18 Thread Daniel Fish
Please ignore this question... - Original Message - From: Daniel Fish To: Matplotlib-users@lists.sourceforge.net Sent: Tuesday, September 18, 2007 11:21 AM Subject: [Matplotlib-users] runtime error Could anyone explain why I get a runtime error when using pylab.ion? (see

[Matplotlib-users] py2exe with pylab

2007-09-18 Thread Emmanuel
Hi, I got the setup.py given by Werner in an old thread (message from april 4th 2007). I putted code thereafter. I installed matplotlib 0.90.1/ python 2.5 on windows XP When I run the setup, it make an exception when using matplotlib.get_py2exe_datafiles() : -- 13 mpdir, mpfiles =

Re: [Matplotlib-users] py2exe with pylab

2007-09-18 Thread Werner F. Bruhin
Oops, forgot to copy the list. Hi Emmanuel, Emmanuel wrote: Hi, I got the setup.py given by Werner in an old thread (message from april 4th 2007). I putted code thereafter. This is probably out of date for 0.90. I attach the one I updated at some point, also I am not sure that how I deal

[Matplotlib-users] plotting and threads - can someone tell me what is happening here?

2007-09-18 Thread Daniel Hearn
Hi. I wrote a socket server in python that accepts up to two data arrays and should plot them using matplotlib. Unfortunately, when I made my server multi-threaded I ran into some very strange issues. I can't figure out what exactly is happening so I can't fix it. If anyone knows what is