[Matplotlib-users] matplotlib with openoffice

2006-07-18 Thread Fabian Braennstroem
Hi, since openoffice can use python as macro language, does anyone know or has an idea, if is possible to use matplotlib for plotting inside it. Would be nice to create diagrams just be marking columns!? Greetings! Fabian

Re: [Matplotlib-users] No marker fill?

2006-07-18 Thread John Hunter
> "Michael" == Michael Fitzgerald <[EMAIL PROTECTED]> writes: Michael> Hi all, Michael> I would like a way to set the marker face color to 'None' Michael> so that I may see overlapping markers. I am aware of the Michael> workaround using scatter() to set alpha, but alas that'

[Matplotlib-users] No marker fill?

2006-07-18 Thread Michael Fitzgerald
Hi all, I would like a way to set the marker face color to 'None' so that I may see overlapping markers. I am aware of the workaround using scatter() to set alpha, but alas that's no good for PS output: http://sourceforge.net/mailarchive/message.php?msg_id=12261949 Is this currentl

[Matplotlib-users] No resizing of figures

2006-07-18 Thread Tommy Grav
Is there a keyword or a function to lock the figures so that they can not be resized?Cheers Tommy[EMAIL PROTECTED]http://homepage.mac.com/tgrav/"Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genious -- and a lot of courage -- to move in the opposit

Re: [Matplotlib-users] basemap plots

2006-07-18 Thread Eric Firing
Lionel, Assuming you have the current version of mpl, use the "extend" kwarg: colorbar properties: extend='neither', 'both', 'min', 'max' If not 'neither', make pointed end(s) for out-of-range values. These are set for a given colormap using the

Re: [Matplotlib-users] jagged edges on masked contour plots

2006-07-18 Thread Eric Firing
John, You are correct about the way contour handles masked data, and I agree that it is ugly; unfortunately, it is inherent in the routine we are using. You could reduce but not eliminate the problem by interpolating to a finer grid. The routine we are using, which came from the gist package,

Re: [Matplotlib-users] Bug: y axis labels end up having multiple fonts. Example included

2006-07-18 Thread John Hunter
> "Vinj" == Vinj Vinj <[EMAIL PROTECTED]> writes: Vinj> Some of the y axis labels end up having different fonts: Vinj> http://s3.amazonaws.com/oylb/wlsn_qm.png?20060717232235 Vinj> In the above image, 7 and 7.5 have a larger font. I'm using Vinj> matplotlib 0.87.3 with ubuntu

Re: [Matplotlib-users] tick and axis label hiding

2006-07-18 Thread John Hunter
> "Michael" == Michael Fitzgerald <[EMAIL PROTECTED]> writes: Michael> Hi all, Michael> I'm seeing some unexpected behavior when trying to hide a Michael> tick label, which I like to do with ganged plots. When I Michael> attempt this, however, it seems the axis label is no

[Matplotlib-users] tick and axis label hiding

2006-07-18 Thread Michael Fitzgerald
Hi all, I'm seeing some unexpected behavior when trying to hide a tick label, which I like to do with ganged plots. When I attempt this, however, it seems the axis label is no longer drawn. For example, x = arange(5) ax = subplot(111) ax.plot(x, x) xtl = ax.get_xticklabels() xtl[0].set_vis

Re: [Matplotlib-users] Event handling for several windows

2006-07-18 Thread John Hunter
> "Tommy" == Tommy Grav <[EMAIL PROTECTED]> writes: Tommy> I have a program that uses matplotlib to plot two images. Tommy> figim24 = figure(figsize=(5,5)) figim70 = Tommy> figure(figsize=(5,5)) Tommy> I want an event loop that will be able to register which of Tommy> the

Re: [Matplotlib-users] plot([0, 0], [1,2])

2006-07-18 Thread Antonio Gonzalez
> but when i try to plot the same at (0,2), i get an error: > > plot([0], [2],'o-'); show() Well, this works perfectly fine for me (with mpl 0.87.4, rev 2558). Maybe if you upgrade your mpl? Cheers. - Take Surveys. Earn

Re: [Matplotlib-users] basemap plots

2006-07-18 Thread Lionel Roubeyrie
HI, how do you set the arrows on the bottom and the top of your colorbar? I don't find any option for that? Thanks Le Vendredi 07 Juillet 2006 10:11, [EMAIL PROTECTED] a écrit : > On Friday 07 July 2006 4:11 pm, Lionel Roubeyrie wrote: > > Hi all, > > Is it possible to import colormap file from G

[Matplotlib-users] plot([0, 0], [1,2])

2006-07-18 Thread holger . dinkel
Hi Experts, i just stumbled upon something i can't quite explain (or rather i think i can explain it, but i cannot understand it): Consider the following minimal example: plot([1], [2],'o-'); show() draws a single point at coords (1,2) - perfectly fine. but when i try to plot the same at

[Matplotlib-users] jagged edges on masked contour plots

2006-07-18 Thread John Pye
Hi all I have an application requiring that I do contour plots for masked data. At the edge of my contour plots, I'm getting fragmented contours due to missing points on the corner of a cell in my grid. Is there any way that the contour drawing code can be set up so that it plots contours even if