[Matplotlib-users] Matplotlib with native OSX port of GTK

2008-11-10 Thread Marcus Vinicius Eiffle Duarte
Hi, folks! I am trying to compile matplotlib-0.98.3 on OSX 10.5.5. with support for the native port of GTK-2.0 (www.gtk-osx.org). I am doing this because the official egg gives an error when my GUIs try to create a canvas using GTK (with all renderers: GDK, Agg or Cairo). I assume the official

Re: [Matplotlib-users] Python 2.6

2008-11-10 Thread Michael Droettboom
Great. Does this mean we can close the bug? Mike John Hunter wrote: On Sat, Nov 8, 2008 at 10:39 PM, Jae-Joon Lee [EMAIL PROTECTED] wrote: John, I'm attaching an another patch, which seems to give a correct result for the figimage_demo. The flipud_out() calls before compositing seems

[Matplotlib-users] Installation problem

2008-11-10 Thread Frank Lagor
Hi, I am sorry to bug you all with an installation problem, but I need some additional help to get this figured out. I previously had a matplotlib installed and working fine, but it was necessary for me to redo some other installations like numpy when I needed a complete lapack library. This

Re: [Matplotlib-users] Installation problem

2008-11-10 Thread Michael Droettboom
I don't know if this will help, but... Python packages generally don't have proper dependency management when building. That means, if an underlying dependency changes, it often doesn't rebuild enough to keep things in sync. You may want to try rebuilding everything after first completely

Re: [Matplotlib-users] Installation problem

2008-11-10 Thread Frank Lagor
On Mon, Nov 10, 2008 at 3:46 PM, Michael Droettboom [EMAIL PROTECTED] wrote: I don't know if this will help, but... Python packages generally don't have proper dependency management when building. That means, if an underlying dependency changes, it often doesn't rebuild enough to keep things

Re: [Matplotlib-users] Installation problem

2008-11-10 Thread Darren Dale
On Monday 10 November 2008 03:37:26 pm Frank Lagor wrote: Hi, I am sorry to bug you all with an installation problem, but I need some additional help to get this figured out. I previously had a matplotlib installed and working fine, but it was necessary for me to redo some other

Re: [Matplotlib-users] Installation problem

2008-11-10 Thread Frank Lagor
On Mon, Nov 10, 2008 at 4:00 PM, Darren Dale [EMAIL PROTECTED] wrote: On Monday 10 November 2008 03:37:26 pm Frank Lagor wrote: Hi, I am sorry to bug you all with an installation problem, but I need some additional help to get this figured out. I previously had a matplotlib installed

[Matplotlib-users] legend markerscale not working

2008-11-10 Thread Orest Kozyar
On Ubuntu 8.10 (Intrepid Ibex) I'm using matplotlib 0.98.3 and would like to use the markerscale to make my legend points smaller (e.g. 0.6). However, it does not appear to be working. The following code: plot(arange(0, 100, .1), cos(arange(0, 100, .1)), 'ro', markersize=20, lable='test')

Re: [Matplotlib-users] Land-Sea masks (mpl_toolkits.basemap)

2008-11-10 Thread Jeff Whitaker
Patrick Marsh wrote: Greetings, I have global data that I would like to plot using mpl_toolkits.basemap. The catch is that I want to mask out all data over the ocean. I know there is a function to fill continents,map.fillcontinents(), but I can't seem to find one for filling oceans.