Re: [Matplotlib-users] savefig bbox_inches='tight' does not consider suptitle

2011-03-04 Thread Benjamin Root
On Wed, Mar 2, 2011 at 8:46 AM, Yuri D'Elia wrote: > > > > On Wed, 2 Mar 2011 22:01:02 +0900 > Jae-Joon Lee wrote: > > > >> > Is this a bug? > > >> > > >> Unfortunately, bbox_inches option is never meant to be complete in > > >> figuring out the exact size of the figure area. > > > > > > Why no

Re: [Matplotlib-users] Problem plotting points in 3D

2011-03-04 Thread Benjamin Root
On Thu, Mar 3, 2011 at 9:54 PM, George Washington wrote: > I am new to Matplotlib and am having some problems plotting the following > set of coordinates (in python 2.6 and Win 7 32) > This is just a small sample of the data: > > Seq.No.x-scale y-scale

Re: [Matplotlib-users] Can't set scatter plot point color

2011-03-04 Thread Mr. Python
Thank you for the reply. I discovered this myself yesterday. Now I have an official answer if people want a colored + or the x symbol in the scatter plot. Scott Hansen efiring wrote: > > On 03/02/2011 06:42 AM, Mr. Python wrote: >> >> I am unable to set the color of the scatter plot points

Re: [Matplotlib-users] Can't set scatter plot point color

2011-03-04 Thread Eric Firing
On 03/02/2011 06:42 AM, Mr. Python wrote: > > I am unable to set the color of the scatter plot points using the code below: > > import matplotlib > matplotlib.use('Qt4Agg') > > import matplotlib.pyplot as plt > import numpy as np > > plt.scatter(newSpdVals, newEngLoadVals,c='g',marker='+') This is

Re: [Matplotlib-users] built docs contain .pyc files

2011-03-04 Thread Michael Droettboom
On 03/01/2011 10:22 PM, Jason Grout wrote: > I tried building the standalone html docs using: > > cd doc > python make.py html > > I notice that there are around 30 .pyc files left in the > build/html/pyplots/ directory. Are these needed in the html > documentation build directory? > No -- but

Re: [Matplotlib-users] savefig bbox_inches='tight' does not consider suptitle

2011-03-04 Thread Yuri D'Elia
On Wed, 2 Mar 2011 22:01:02 +0900 Jae-Joon Lee wrote: > >> > Is this a bug? > >> > >> Unfortunately, bbox_inches option is never meant to be complete in > >> figuring out the exact  size of the figure area. > > > > Why not? What's the purpose of bbox_inches='tight' otherwise? > > Figuring out

[Matplotlib-users] Can't set scatter plot point color

2011-03-04 Thread Mr. Python
I am unable to set the color of the scatter plot points using the code below: import matplotlib matplotlib.use('Qt4Agg') import matplotlib.pyplot as plt import numpy as np plt.scatter(newSpdVals, newEngLoadVals,c='g',marker='+') #Add the graph title and x/y axis labels plt.tit

[Matplotlib-users] contour plot without smoothing

2011-03-04 Thread S3b4st1an
Hello everyone, I've got a contour plot on a pcolor plot: http://old.nabble.com/file/p31038837/m3921-csv-RMSfinalSlip-pleft.pdf m3921-csv-RMSfinalSlip-pleft.pdf I would like to have the contours (the 2 black lines) go along the grid without any diagonal lines. Is that possible? And if so, cou

Re: [Matplotlib-users] contour plot without smoothing

2011-03-04 Thread S3b4st1an
Hey guys, I think I found the answer to my question: No, it is not possible to have a contour along the grid of a pcolor plot out of the box, because the contour would take the shortest path between neighbouring same-value-points in a dataset. Pcolor merely changes the representation of these dat