[Matplotlib-users] pylab import error (backends related)

2006-10-08 Thread William Hunter
I posted this on scipy-user ML, then tried here and it bounced (?), so now I'm trying again. Sigh... OK, so I can't import pylab, but everything else (import numpy, scipy, matplotlib and gtk) works fine. These are installed: scipy.__version__ returns '0.5.1' numpy.__version__ returns '1.0rc1' ma

[Matplotlib-users] x axis display problems

2006-10-08 Thread Faheem Mitha
Hi, The following generates a plot, but the x axis label is missing. Am I doing something wrong? In any case, can anyone suggest a solution or workaround? This has been tested with the version of matplotlib in Debian etch (0.87.5). Thanks in advance.

Re: [Matplotlib-users] Setting only the X-axis scale?

2006-10-08 Thread Paul Barrett
Kelvin, If you are using the command line interface, try using 'xlim(a, b)' to set the limits. -- Paul On 10/6/06, Kelvin Chu <[EMAIL PROTECTED]> wrote: > Hi, > > Is it possible in python/matplotlib to only define the x-axis range > and have the y-axis autoscale? > > I've read the docs about ax

Re: [Matplotlib-users] markercolor broken

2006-10-08 Thread Eric Firing
Stefan, Thanks for the bug report--it is surprising that no one noticed this earlier. It looks like Norbert's changes completely wiped out the setting of markerfacecolor and markeredgecolor. I have reverted axes.py in svn to the 2788 revision (via revision 2799) so that it will work until No

[Matplotlib-users] markercolor broken

2006-10-08 Thread Stefan van der Walt
Hi all The marker behaviour changed in r2790 | nnemec | 2006-09-29 11:46:57 +0200 (Fri, 29 Sep 2006) | 1 line reworked linestyle and markercolor handling For example, try the following: N.plot(N.random.random(1000),'r.')