Re: [Matplotlib-users] errorbar plot with different markers

2011-08-18 Thread Benjamin Root
On Tue, Aug 16, 2011 at 7:12 PM, Andre' Walker-Loud walksl...@gmail.comwrote: Hi All, A question for a possible new feature for Matplotlib. First, in case there is a way to do it currently: I often find myself plotting data with errorbars, and I would like to be able to modify the marker,

[Matplotlib-users] Gridspec and shared y-axis label

2011-08-18 Thread mogliii
I could already answer one question by myself about the top margin in gridspec. '''1) I would like to reduce the top margin. For that I though I can do something like this: gs = gridspec.GridSpec(2, 1, width_ratios=[2,1]) - gs.update(bottom=0.2, left=0.2, hspace=0.05) + gs.update(bottom=0.2,

[Matplotlib-users] solution for eps figures and pdf output

2011-08-18 Thread Jonathan Slavin
Hi all, After trying several ways around this problem, I've found a solution that is pretty straightforward and produces nice results. The problem I'm referring to is that when I saved my figures as encapsulated PostScript for inclusion in a LaTeX document, the figures came out missing certain

[Matplotlib-users] griddata usage

2011-08-18 Thread bhargav vaidya
Hello all Can any one explain me how can I use griddata in matplotlib for 2-d interpolation of polar to cartesian co-ordinates. I have two 1D arrays r and theta of 128 and 64 cells respectively I have a 2D array temperature T(r,theta) with (128, 64) cells. I would like to have Tnew(200,200)

Re: [Matplotlib-users] mathtext in eps figures doesn't come out in pdf

2011-08-18 Thread Fernando Perez
On Wed, Aug 17, 2011 at 5:53 AM, Jonathan Slavin jsla...@cfa.harvard.edu wrote: Attached are examples of the problem -- a PostScript file and the pdf that is created using ps2pdf.  The y-axis is properly labeled in the ps file, but the part of the label using mathtext becomes invisible in the

Re: [Matplotlib-users] mathtext in eps figures doesn't come out in pdf

2011-08-18 Thread Jae-Joon Lee
When I converted the ps file to pdf, the result is okay. I tried * ps2pdf (from ghostscript version 8.61) * ps2pdf (from ghostscript version 9.02) * preview in mac os X and they all worked fine. I wonder if this could be a bug in the pspdf (ghostscript 8.70 I believe). Can you try other

[Matplotlib-users] Can I change pixel aspect with axes_grid

2011-08-18 Thread gary ruben
Usually imshow(arr, aspect='auto') or imshow(arr, aspect=2.0) will display the image with pixels having some aspect ratio other than 1:1 However, I cannot get this to work when using imshow within an AxesGrid axis. Is there a way to get an array shown with imshow() within an AxesGrid axis to have

Re: [Matplotlib-users] Gridspec and shared y-axis label

2011-08-18 Thread Jae-Joon Lee
On Fri, Aug 19, 2011 at 1:29 AM, mogliii mogl...@gmx.net wrote: Looking back I must say that http://matplotlib.sourceforge.net/api/gridspec_api.html#matplotlib.gridspec.GridSpecBase is not very helpful. And it is very counter-intuitive to the Axes dimension specification with location lower