Re: [Matplotlib-users] problem with minorticks

2010-03-30 Thread Matthias Michler
On Monday 29 March 2010 19:53:00 yogesh karpate wrote: Dear All, I want to make minor ticks working in following program. Here only major ticks are dis[played in grpah though i have declared the minor ticks minorticks_on() doesnt work in my code. How to fix that.Please help

Re: [Matplotlib-users] Speaking of 'many' ... line collections? (was: Put many graphs...)

2010-03-30 Thread Jon Olav Vik
David Carmean dlc-...@... writes: At what point is a line Collection useful? More efficient for adding or manipulating many lines in one go. It saved my life (some hours of it, anyway) the other day: http://article.gmane.org/gmane.comp.python.matplotlib.general/22149

Re: [Matplotlib-users] Making a data-driven colormap

2010-03-30 Thread Friedrich Romstedt
2010/3/30 Ariel Rokem aro...@berkeley.edu: I ended up with the code below, using Chloe's previously posted 'subcolormap' and, in order to make the colorbar nicely attached to the main imshow plot, I use make_axes_locatable in order to generate the colorbar axes. I tried it out with a couple of

[Matplotlib-users] SciPy 2010: Vote on Tutorials Sprints

2010-03-30 Thread Amenity Applewhite
Email not displaying correctly? View it in your browser. Hello Amenity, Spring is upon us and arrangements for SciPy 2010 are in full swing. We're already nearing on some important deadlines for conference participants: April 11th is the deadline for submitting an abstract for a paper,

Re: [Matplotlib-users] Making a data-driven colormap

2010-03-30 Thread Ariel Rokem
Hi Friedrich, Thanks a lot - very nice! Cheers - Ariel On Tue, Mar 30, 2010 at 6:52 AM, Friedrich Romstedt friedrichromst...@gmail.com wrote: 2010/3/30 Ariel Rokem aro...@berkeley.edu: I ended up with the code below, using Chloe's previously posted 'subcolormap' and, in order to make the

Re: [Matplotlib-users] contourf problem

2010-03-30 Thread Alan G Isaac
2010/3/29 Alan G Isaac alan.is...@gmail.com: Can you explain this: norm = colors.Normalize(vmin = -1, vmax = 1) On 3/28/2010 10:05 PM, Friedrich Romstedt wrote: The normaliser takes some arbitrary value and returns a value in [0, 1]. Hence the name. The value \in [0, 1] is handed over

Re: [Matplotlib-users] Basemap white space

2010-03-30 Thread Filipe Pires Alvarenga Fernandes
Thanks Friedrich, However, my knowledge of python is very limited, even though I think I understood what you suggested I do not know how to get the shape (of the figure?) for this part: fig.set_size_inches(float(shape[0]) / dpi, float(shape[1]) / dpi) error is: Traceback (most recent call

Re: [Matplotlib-users] Making a data-driven colormap

2010-03-30 Thread Chloe Lewis
But this example doesn't solve the problem I was thinking of: it shows lots of colors in the colorbar that aren't used in the plot. C On Mar 30, 2010, at 6:52 AM, Friedrich Romstedt wrote: 2010/3/30 Ariel Rokem aro...@berkeley.edu: I ended up with the code below, using Chloe's previously

[Matplotlib-users] Histogramme bug report

2010-03-30 Thread Julien
Hello All. I just found a bug with the histogramme fonction of matplotlib. It might been already known, in this case don't pay attention to my message. The bug append with both OS: Windows XP and Linux (ubuntu). Both using the latest matplotlib release: 0.99.1 The bug is reproductible, with

[Matplotlib-users] Shifting the Origin

2010-03-30 Thread Rachel-Mikel_ArceJaeger
Hello, This is my first time trying out this list, so please forgive me if I've doing this wrong. I'm trying to create a plot that has its origin in the upper-left hand corner, rather than the lower-left hand corner. I've discovered that I get the same effect if I do: plt.plot( xcoords,

Re: [Matplotlib-users] Copying collections over to a new figure

2010-03-30 Thread Jae-Joon Lee
Doing this in a general way is quite difficult (if possible) because a user can set an arbitrary transform for an artist. What we may try to do is recycling artists whose transform is simple, e.g., transData, rather than try to come up with a general solution. I'll see what I can do but I must

Re: [Matplotlib-users] Copying collections over to a new figure

2010-03-30 Thread Eric Firing
Jae-Joon Lee wrote: Doing this in a general way is quite difficult (if possible) because a user can set an arbitrary transform for an artist. What we may try to do is recycling artists whose transform is simple, e.g., transData, rather than try to come up with a general solution. Is even that

Re: [Matplotlib-users] Making a data-driven colormap

2010-03-30 Thread Ryan May
On Tue, Mar 30, 2010 at 11:15 AM, Chloe Lewis chle...@berkeley.edu wrote: But this example doesn't solve the problem I was thinking of: it shows lots of colors in the colorbar that aren't used in the plot. Here's a patch (and example) that I've cooked up that adds a colorbar.set_limits()

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Gökhan Sever
On Mon, Mar 29, 2010 at 10:20 PM, rachel-mikel_arcejae...@hmc.edu wrote: Hello, This is my first time trying out this list, so please forgive me if I've doing this wrong. I'm trying to create a plot that has its origin in the upper-left hand corner, rather than the lower-left hand corner.

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Ryan May
2010/3/29 Rachel-Mikel_ArceJaeger rachel-mikel_arcejae...@hmc.edu: Hello, This is my first time trying out this list, so please forgive me if I've doing this wrong. I'm trying to create a plot that has its origin in the upper-left hand corner, rather than the lower-left hand corner. I've

Re: [Matplotlib-users] Copying collections over to a new figure

2010-03-30 Thread Jae-Joon Lee
On Tue, Mar 30, 2010 at 2:56 PM, Eric Firing efir...@hawaii.edu wrote: Is even that worth the potential extra complexity, both in the code and in the documentation?  What is the real benefit? I think there are some benefit of moving artists to another axes. Also this will help enabling moving

Re: [Matplotlib-users] Histogramme bug report

2010-03-30 Thread Jae-Joon Lee
On Tue, Mar 30, 2010 at 11:12 AM, Julien ju_bicy...@yahoo.fr wrote: This script should give you a srange historamme, with bins that are half the size they shoud be. I'm sorry but it is not clear what is wrong. The histogram looks just fine to me. Maybe you wanted to do

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Gökhan Sever
On Tue, Mar 30, 2010 at 2:37 PM, Ryan May rma...@gmail.com wrote: You're looking for the set_ticks_position method on the xaxis (I've also tweaked setting the limits): plt.plot(xcoords, ycoords, 'ro') plt.xlim(0, maxX) plt.ylim(maxY, 0) ax = plt.gca() # Get current axes object

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Ryan May
On Tue, Mar 30, 2010 at 2:10 PM, Gökhan Sever gokhanse...@gmail.com wrote: On Tue, Mar 30, 2010 at 2:37 PM, Ryan May rma...@gmail.com wrote: You're looking for the set_ticks_position method on the xaxis (I've also tweaked setting the limits): plt.plot(xcoords, ycoords, 'ro') plt.xlim(0,

Re: [Matplotlib-users] Basemap white space

2010-03-30 Thread Friedrich Romstedt
2010/3/30 Filipe Pires Alvarenga Fernandes ocef...@gmail.com: However, my knowledge of python is very limited, even though I think I understood what you suggested I do not know how to get the shape (of the figure?) for this part: fig.set_size_inches(float(shape[0]) / dpi, float(shape[1]) /

Re: [Matplotlib-users] Making a data-driven colormap

2010-03-30 Thread Friedrich Romstedt
2010/3/30 Chloe Lewis chle...@berkeley.edu: But this example doesn't solve the problem I was thinking of: it shows lots of colors in the colorbar that aren't used in the plot. I'm so stupid! Here is the correct code. I just interchanged -bounds, bound with min_val, max_val on line 28. The

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Rachel-Mikel Arce Jaeger
Ryan's code works great - thanks! The only problem I have is that show() never terminates? If I force terminate it and close the figure, then all I ever have to do is call draw() and the figure reappears, but I have to call show() at least once, or else the figure will never appear. I don't

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Ryan May
On Tue, Mar 30, 2010 at 3:51 PM, Rachel-Mikel Arce Jaeger rachel-mikel_arcejae...@hmc.edu wrote: Ryan's code works great - thanks! The only problem I have is that show() never terminates? If I force terminate it and close the figure, then all I ever have to do is call draw() and the figure

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Gökhan Sever
On Tue, Mar 30, 2010 at 3:17 PM, Ryan May rma...@gmail.com wrote: According to the docstring, it only puts ticks in both locations, not labels, which is what I'm seeing here on SVN with the PyGTK backend. Are you seeing something different? Yes, same here. It is just a bit unexpected

Re: [Matplotlib-users] Shifting the Origin

2010-03-30 Thread Ryan May
(Putting back on list) On Tue, Mar 30, 2010 at 5:06 PM, Rachel-Mikel Arce Jaeger rachel-mikel_arcejae...@hmc.edu wrote: I see. I think utilizing the backend will be sufficient for now. One more question (and thank you so much for your help!). Switching the xaxis to the top crushes it into

[Matplotlib-users] field plot with null clines

2010-03-30 Thread Alan G Isaac
To get a field plot with null clines, I'm using the approach John illustrated here: http://mail.scipy.org/pipermail/scipy-user/2007-October/014290.html Is this the recommended approach these days? Thanks, Alan Isaac --