[Matplotlib-users] semilogy with dates on x?

2010-05-12 Thread Alan G Isaac
What is the preferred method to do the equivalent of plot_date with log scaling for the non-date values? Thanks, Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib-use

[Matplotlib-users] First use

2010-05-12 Thread Vlad Didenko
Colleagues, I am trying to follow the http://matplotlib.sourceforge.net/users/pyplot_tutorial.html tutorial with little success. The very first import fails with either 64 or 32-bit python. Any hints I have missed? $ python Python 2.6.1 (r261:67515, Feb 11 2010, 00:51:29) [GCC 4.2.1 (Apple Inc

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-12 Thread Jae-Joon Lee
On Wed, May 12, 2010 at 5:58 AM, Yannick Copin wrote: > gs = gridspec.GridSpec(3, 3) > ax1 = gs[0, :] > I'm inclined to leave the GridSpec as it is and I prefer to have a separate class for this (if we go for it). My inclination is to modify subplot2grid to return such an instance. e.g., grid =

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-12 Thread Jae-Joon Lee
On Tue, May 11, 2010 at 1:38 PM, John Hunter wrote: > This looks sufficiently general and useful that we may simply want it > to live in the main tree (not as a toolkit) and have subplot2grd > helper functionality available directly from pyplot. > Okay. I'll merge this into the main tree and comm

Re: [Matplotlib-users] Basemap continent colors

2010-05-12 Thread Jeff Whitaker
On 5/12/10 7:37 AM, Michael Hearne wrote: > Jeff - That's great, thanks! For future releases, is there a reason why > fillcontinents() couldn't do the logic for the user - i.e., if the continent > fills the figure, paint it with the user's desired color? I think that's > less surprising than t

Re: [Matplotlib-users] Basemap continent colors

2010-05-12 Thread Michael Hearne
Jeff - That's great, thanks! For future releases, is there a reason why fillcontinents() couldn't do the logic for the user - i.e., if the continent fills the figure, paint it with the user's desired color? I think that's less surprising than the way it works now. --Mike On May 11, 2010, at

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-12 Thread Yannick Copin
Hi, Jae-Joon Lee writes: > gridspec is a module that implements matplotlib’s Subplot slightly > differently. Current matplotlib’s Subplot only allows a Subplot to > occupy a single cell of the n x m grid. gridspec enables a Subplot to > occupy multiple cells. Very interesting indeed. If I may