Re: [Matplotlib-users] Trouble with x-axis labeling

2013-04-17 Thread Alexa
Hi Ben, Thank you for your quick reply. That did the trick! I will into ax.label_outer() , thanks for the suggestion. - Alexa -- View this message in context: http://matplotlib.1069221.n5.nabble.com/Trouble-with-x-axis-labeling-tp40916p40918.html Sent from the matplotlib - users mailing list

[Matplotlib-users] Trouble with x-axis labeling

2013-04-17 Thread Alexa
Hello All! I searched for my problem and while I found similar questions this seemed to be a unique problem. I am creating an image that is six vertically stacked subplots and I want only the axis of the bottom subplot to be labelled. However, as you can see from the image I attached it's picking

Re: [Matplotlib-users] Axes Scaling

2012-02-17 Thread Alexa Villaume
Hi François, Why would it be a waste to multiply the values in an array by the scaling factors? Can you provide an example of your code so everybody can get a better idea of what you're doing now? Thanks, Alexa On Fri, Feb 17, 2012 at 9:07 AM, Francois Lemery wrote: > Hi Python Worl

Re: [Matplotlib-users] Fwd: Re: Colobar and change axis x and y labels

2012-02-15 Thread Alexa Villaume
You need to use the 'imshow' function to display an image in greyscale. You have to turn your image into an array of values and then put that array into imshow with the colormap set to grey. I don't know about how to do a plane fit... On Wed, Feb 15, 2012 at 9:18 PM, wrote: &

Re: [Matplotlib-users] Colobar and change axis x and y labels

2012-02-15 Thread Alexa Villaume
Try using 'xticks' and 'yticks', those commands let you define the location and label fo your tick marks. Example - xticks( arange(5), ('0', '100', '200', '300', '400') ) Where the argument in arange is the number of tick labels you're making On Wed, Feb 15, 2012 at 10:56 AM, wrote: > Hello,

Re: [Matplotlib-users] Labeling Contours

2012-02-15 Thread Alexa Villaume
peError: not all arguments converted during string formatting On Wed, Feb 15, 2012 at 10:34 AM, Eric Firing wrote: > On 02/15/2012 10:15 AM, Alexa Villaume wrote: > > Hi Everybody, > > > > > > I'm trying to label the contours of my contour plot following this > &

[Matplotlib-users] Labeling Contours

2012-02-15 Thread Alexa Villaume
] for l,s in zip(levels, strs): fmt[l] = s plt.clabel(CS,levels[::2],inline=True,fmt=fmt,fontize=14) But I get an error that says that "levels" is not defined. What should I do? Thanks! Alexa -- Virt

Re: [Matplotlib-users] I cannot download the matplotlib

2012-02-13 Thread Alexa Villaume
or message? (Also, click "Reply All" to keep this conversation to the list" - Alexa On Mon, Feb 13, 2012 at 10:11 AM, wrote: > Hi Alex , thank you so much for your help. I have some questions: > > 1- where can I find the terminal in my computer > 2- I have already had p

Re: [Matplotlib-users] I cannot download the matplotlib

2012-02-13 Thread Alexa Villaume
they are more specifically and you'll be able to get better help Cheers, Alexa On Sun, Feb 12, 2012 at 5:39 PM, love ali wrote: > Dear all, > > I use the mac OS X 10.6.8 and I try to install the matplotlib but I cannot > run it in my computer so could you please help me? &g

Re: [Matplotlib-users] Alpha keyword not working with contourf

2012-02-12 Thread Alexa Villaume
or the way mpl handles postscript files? On Sat, Feb 11, 2012 at 10:48 AM, Eric Firing wrote: > On 02/11/2012 10:30 AM, Alexa Villaume wrote: > >> Thanks for replying Eric. >> > > (You're welcome. But please keep replies on the list when they are > potentially usef

[Matplotlib-users] Alpha keyword not working with contourf

2012-02-11 Thread Alexa Villaume
Hi All, I'm just getting started with matplotlib. I'm trying to make a contour plot using contourf and have the different paths colored and semi transparent but the alpha keyword doesn't seem to do anything. I googled around and found that other people have had this same problem but I didn't find

[Matplotlib-users] Trouble with reading 2d array

2011-08-29 Thread Alexa Villaume
in and neither gives the correct output. Does anyone know of any command either specific for reading in 2d arrays or is able to handle 2d arrays? Thanks, Alexa -- Special Offer -- Download ArcSight Logger for FREE! Finally, a w

[Matplotlib-users] Defining coordinates for contour plot

2011-08-20 Thread Alexa Villaume
3, O3Level) And I get an error that says, "TypeError: Length of x must be number of columns in z, and length of y must be number of rows." I don't understand how I'm supposed to get the coordinates for the plot that I want and make x and y the same shape as z. A