Re: [Matplotlib-users] Can matplotlib be run from PythonWin IDE in interactive mode?

2008-12-03 Thread Christopher Barker
Elfnor wrote: > I'm giving an introductory talk on matplotlib to colleagues next week. I'd > like to run matplotlib in interactive mode from the PythonWin IDE. Is this > possible? probably not reliably -- pythonWin IDE runs things inside the same interpreter as the IDE itself, and therefore has p

[Matplotlib-users] Can matplotlib be run from PythonWin IDE in interactive mode?

2008-12-03 Thread Elfnor
Hi I'm giving an introductory talk on matplotlib to colleagues next week. I'd like to run matplotlib in interactive mode from the PythonWin IDE. Is this possible? I use PyScripter or occasionally IPython myself, but the python group I'm talking to have all been set up with PythonWin and my brief

Re: [Matplotlib-users] Contour line data

2008-12-03 Thread Eric Firing
Mike Hearne wrote: > > >>I don't think this is going to make it easy to do what you want > > It might if I could find the x,y data in the LineCollection objects. > There is an undocumented function in the LineCollection class called > get_paths(), which looks like it returns a list of Path ob

Re: [Matplotlib-users] Contour line data

2008-12-03 Thread Mike Hearne
>>I don't think this is going to make it easy to do what you want It might if I could find the x,y data in the LineCollection objects. There is an undocumented function in the LineCollection class called get_paths(), which looks like it returns a list of Path objects. These path objects have a

Re: [Matplotlib-users] Contour line data

2008-12-03 Thread Eric Firing
Mike Hearne wrote: > > How can I get the actual x,y data that represents the contour lines that > are drawn with the contour() function? > > I'd like to be able to redraw portions of those lines with different > styles (dashed, dotted, etc.) > > For example, given the following sample code (li

[Matplotlib-users] Contour line data

2008-12-03 Thread Mike Hearne
How can I get the actual x,y data that represents the contour lines that are drawn with the contour() function? I'd like to be able to redraw portions of those lines with different styles (dashed, dotted, etc.) For example, given the following sample code (lifted from the sourceforge example):

Re: [Matplotlib-users] unexpected keyword argument error while running legend_demo3.py

2008-12-03 Thread John Hunter
On Wed, Dec 3, 2008 at 9:15 AM, Nitin Bhide <[EMAIL PROTECTED]> wrote: > Hi, > > I am getting following error while running the 'legend_demo3.py' from the > examples. > > exec codeObject in __main__.__dict__ > File "D:\nitinb\SoftwareSources\SVNPlot\legendtest.py", line 13, in >ax1.legend(lo

[Matplotlib-users] unexpected keyword argument error while running legend_demo3.py

2008-12-03 Thread Nitin Bhide
Hi, I am getting following error while running the 'legend_demo3.py' from the examples. exec codeObject in __main__.__dict__ File "D:\nitinb\SoftwareSources\SVNPlot\legendtest.py", line 13, in ax1.legend(loc=1, ncol=3, shadow=True) File "F:\Python25\Lib\site-packages\matplotlib\axes.py"

Re: [Matplotlib-users] xticks in a polar plot

2008-12-03 Thread Ryan May
Nils Wagner wrote: > Hi all, > > How can I suppress xticks in a polar plot ? import matplotlib.pyplot as plt from matplotlib.ticker import NullFormatter ax = plt.subplot(1, 1, 1, polar=True) ax.xaxis.set_major_formatter(NullFormatter()) plt.show() Ryan -- Ryan May Graduate Research Assistant

Re: [Matplotlib-users] Matplotlib mapping toolkit - help

2008-12-03 Thread Jeff Whitaker
Aleš Čadež wrote: > > Dear Jeffrey, > > First of all, sorry to bother you. I'm using matplotlib mapping > toolkit. Can you help me with one problem. I would like to colour > different countries with different colors. Is there any way to do this > with basemap toolkit library? I just can't seem t

[Matplotlib-users] xticks in a polar plot

2008-12-03 Thread Nils Wagner
Hi all, How can I suppress xticks in a polar plot ? Nils - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand p