[Matplotlib-users] Having trouble with aligning subplots

2009-07-20 Thread W. Augustine Dunn III
Hello y'all: I am trying to plot a fig with three subplots.  However when I run my script the subplots are all shifted way too high (http://img.skitch.com/20090720-fp462u8ww4bq38j29u9bjtr2cx.png) and the top subplot is cut off. I tried doing something like this from reading another poster's threa

Re: [Matplotlib-users] Having trouble with aligning subplots

2009-07-20 Thread W. Augustine Dunn III
Thanks! On Mon, Jul 20, 2009 at 3:44 PM, Jae-Joon Lee wrote: > index for subplot starts from 1, not 0 (the convention is from Matlab). > > Regards, > > -JJ > > > On Mon, Jul 20, 2009 at 6:31 PM, W. Augustine Dunn > III wrote: >> Hello y'all: >> >

[Matplotlib-users] trying to install from make.osx

2010-02-02 Thread W. Augustine Dunn III
I am having segmentation faults when using any backend other than the WX and native mac versions. I saw that this mpl install page ( http://matplotlib.sourceforge.net/users/installing.html) says to do an svn co followed by an install using the custom make script that should go get the "blessed" ve

[Matplotlib-users] Use text AS values for x-axis

2009-05-30 Thread W. Augustine Dunn III
I am sorry if this has been covered in teh archives or is RTFM-sh but I looked in both places and am low on time. I want to use text as the value for the X-axis ticks not numbers. Something like 'Trial1', 'Trial2', 'Control' instead of 1,2,3. Is this even possible? It seems that this would be a

Re: [Matplotlib-users] Use text AS values for x-axis

2009-05-30 Thread W. Augustine Dunn III
Gökhan == "awesome" Thanks, I KNEW it had to pretty simple. Gus On Sat, May 30, 2009 at 6:12 PM, Gökhan SEVER wrote: > Hey, > > Try this: > > plot([1,2,3]) > locs, labels = xticks([0,1,2], ['Trial1', 'Trial2', 'Control']) > > Gök