Re: [matplotlib-devel] scipy sprints

2015-06-29 Thread Ryan May
> -- > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via emai

Re: [matplotlib-devel] Kivy backend

2015-03-13 Thread Ryan May
stimate the cost of the data transfer, at least for non-millions of points. Even years ago, just doing basic opengl plotting (no sophisticated use of on-GPU memory), was a big win. The other win for mpl + opengl is giving a real rasterizer and depth buffer for the mpl3d package, which is hampered by th

Re: [matplotlib-devel] Developer summit at Scipy?

2014-03-06 Thread Ryan May
ion and > the > freedom to use Git, Perforce or both. Make the move to Perforce. > > http://pubads.g.doubleclick.net/gampad/clk?id=122218951&iu=/4140/ostg.clktrk > ___ > Matplotlib-devel mailing list > Matplotlib-devel@lists.sou

Re: [matplotlib-devel] unused variables

2014-03-06 Thread Ryan May
on large binaries. Built-in WAN optimization and > the > freedom to use Git, Perforce or both. Make the move to Perforce. > > http://pubads.g.doubleclick.net/gampad/clk?id=122218951&iu=/4140/ostg.clktrk > ___ > Matplotlib-devel mailing list > Ma

Re: [matplotlib-devel] Timers independent of canvases

2013-04-15 Thread Ryan May
lization. Get a free account! > http://www2.precog.com/precogplatform/slashdotnewsletter > _______ > Matplotlib-devel mailing list > Matplotlib-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel &

[matplotlib-devel] Matplotlib in daily life

2013-01-21 Thread Ryan May
Hi, Just ran across this article that shows a familiar looking graph. Just another encounter of matplotlib in daily life. http://www.wired.com/wiredenterprise/2013/01/google-password/2/ Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma

Re: [matplotlib-devel] Usefulness of Travis-CI

2013-01-16 Thread Ryan May
vis no longer supports 3.1. That would solve the failures I've seen with my PR's. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- Master Java SE, Java EE, Eclipse, Spri

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-12-04 Thread Ryan May
his case that's the C *is* the implementation of the wrapper. If we go Cython, the cython source is all that is maintained. It may be useful to glance at generated code, but no-one should be tweaking it by hand--the Cython source, and only the Cython source, represents the implementation of

Re: [matplotlib-devel] Experiments in removing/replacing PyCXX

2012-12-01 Thread Ryan May
I'm +1 on Cython. I think its prevalence in the community gives us a larger potential contributor pool than CXX or hand-coded python C-API. I know using Cython would open up that part of the code base for me. Ryan On Dec 1, 2012, at 8:44, Michiel de Hoon wrote: > > In my experience, Benjami

Re: [matplotlib-devel] Use of meta on Artist

2012-11-26 Thread Ryan May
d a key point here. You can always add the line if you need it, but if you don't need it (or can't use it), by use of a metaclass, there's no way to "opt out" so to speak. I'll also add that we don't need to add any more indirection (i.e. another Python function cal

Re: [matplotlib-devel] Animation class: let save() accept **kwargs which are passed on to savefig()?

2012-11-01 Thread Ryan May
; to the command to save the animation. If I get a chance (or someone else if you want to help), I'll see if there's any way to make the pipe-based writers work with variable-sized frames. Failing that, we could just ignore the tight bbox option when using pipes for saving movies. Than

Re: [matplotlib-devel] matplotlib.use()

2012-07-20 Thread Ryan May
specific operations. > I think that is the cleanest solution. I agree, this is a better way to go. (And occurred to me as well after the initial PR.) Glad I asked rather than doing my 2-line fix. The updated PR is at https://github.com/matplotlib/matplotlib/pull/1028 Ryan -- Ryan May Gra

[matplotlib-devel] matplotlib.use()

2012-07-20 Thread Ryan May
, you can actually make the setting take effect, but the average user won't accidentally shoot their foot off. Something like: if 'matplotlib.backends' in sys.modules: if warn: warnings.warn(_use_error_msg) return Ryan -- Ryan May Graduate

Re: [matplotlib-devel] Strange bug when saving animations (with streamplot)

2012-07-03 Thread Ryan May
On Tue, Jul 3, 2012 at 10:03 AM, Tony Yu wrote: > > > On Tue, Jul 3, 2012 at 10:22 AM, Ryan May wrote: >> >> On Tue, Jul 3, 2012 at 9:14 AM, Tony Yu wrote: >> > On Mon, Jul 2, 2012 at 11:42 PM, Tony Yu wrote: >> >> On Sun, Jun 24, 2012 at 10:02 AM,

Re: [matplotlib-devel] Strange bug when saving animations (with streamplot)

2012-07-03 Thread Ryan May
raxil.org/users/anders/posts/2008/03/13/Subprocess-Hanging-PIPE-is-your-enemy/ >> >> [2] >> http://docs.python.org/library/subprocess.html#subprocess.Popen.communicate >> > > And just to clarify: My original email mentioned that saving would hang only > when `streamp

Re: [matplotlib-devel] Saving animations

2012-04-10 Thread Ryan May
ill be helpful to try to narrow down whether the piping itself is making it angry or if something is wrong with ffmpeg. You should just be able to do: anim.save(..., writer='ffmpeg_file') or anim.save(..., writer='menco

Re: [matplotlib-devel] Bug report: _make_movie hanging waiting for ffmpeg

2012-03-14 Thread Ryan May
mprove a wide variety of problems. One changes has been to use communicate() instead of wait(), both to get stdout and stderr text, but also to fix a similar problem on linux. Can you try replacing the close() and wait() calls with just a single call to communicate() and see if that also fixes you

Re: [matplotlib-devel] faulty design for Lasso widget?

2012-02-17 Thread Ryan May
ess of the length of the vertices array.  Does anybody see a > problem with that? Not having looked at the Lasso code, wouldn't it be possible to use one internal callback for the button_release event, and have this callback call the users' callbacks if points > 2 and always handle th

Re: [matplotlib-devel] v1.0.x branch seems confused

2011-06-03 Thread Ryan May
work more on it. (FINALLY.) The only reason I even checked it in originally was so that others could play, but I was (and still am) not ready to commit completely to the API. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma ---

Re: [matplotlib-devel] Simple animation test

2011-03-02 Thread Ryan May
new timer. fig = gcf() timer = fig.canvas.new_timer(interval=50) timer.add_callback(update_line, line) timer.start() show() Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- Fr

Re: [matplotlib-devel] Simple animation test

2011-03-02 Thread Ryan May
ib/tree/master/examples/animation >>> >>> If you are running a released mpl, you can simply drop the >>> animation.py file into your PYTHONPATH and use it directly >>> >>> >>>  https://github.com/matplotlib/matplotlib/blob/master/lib/matplotli

Re: [matplotlib-devel] github devel question

2011-02-25 Thread Ryan May
On Fri, Feb 25, 2011 at 1:48 PM, Darren Dale wrote: > On Fri, Feb 25, 2011 at 2:43 PM, Ryan May wrote: >> On Fri, Feb 25, 2011 at 1:11 PM, Darren Dale wrote: >>> On Fri, Feb 25, 2011 at 1:45 PM, Benjamin Root wrote: >>>> Ok, I am still learning quite a bit

Re: [matplotlib-devel] github devel question

2011-02-25 Thread Ryan May
don't think we should close our own pull requests. It > short-circuits the review process. Agreed in principle. However, do we as devs want to get/give reviews on every change that fixes typos in the docs or fixes stupid bugs in examples? I think there's a point of diminishing return

Re: [matplotlib-devel] gtkagg w/o extension code

2010-11-10 Thread Ryan May
hs before I can get back to that level of developing though.) So I wouldn't be surprised if you revealed I'm doing something wrong in this case. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -

Re: [matplotlib-devel] Blitting for animations

2010-10-24 Thread Ryan May
[Putting this back on list after I mistakenly took it off.] On Fri, Oct 22, 2010 at 11:45 PM, Michiel de Hoon wrote: > Hi Ryan, > > Thanks for your reply. > > --- On Mon, 10/18/10, Ryan May wrote: >> In the course of adding the animations, I also >> added a "cl

Re: [matplotlib-devel] Thoughts about callbacks

2010-10-24 Thread Ryan May
. Also, there are only global signals, you can't connect to a specific object (unless you were planning on each object having its own registry?). When I was considering this yesterday, I was looking at these: http://code.activestate.com/recipes/87056/ http://pydispatcher.sourceforge.net/ Also

Re: [matplotlib-devel] how to submit a patch?

2010-10-23 Thread Ryan May
but I don't know how > to submit a patch.  Could someone please show me? Good catch. I can make the change if you want. However, if you want to use as a learning experience, first make a copy of the original file, say figure.py.orig. Then make the changes to your figure.py. Then you n

Re: [matplotlib-devel] intermittent 'numpy.bool_' object has no attribute '_mask' bug

2010-10-22 Thread Ryan May
has no attribute '_mask' > > > Strangely the bug seems to be intermittent, i.e. rebooting seems to > temporarily fix the issue, but it always returns. > Is this a known issue? Could I somehow fix this by reverti

Re: [matplotlib-devel] Blitting for animations

2010-10-18 Thread Ryan May
of those things. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (former

Re: [matplotlib-devel] Event handling broken in svn?

2010-10-01 Thread Ryan May
o see where do disconnect). What you're seeing in your script is that since you're not assigning the Handler object to anything, it's being garbage collected. It works for me if I change the second to last line to: h = Handler(f) Ryan -- Ryan May Graduate Research

Re: [matplotlib-devel] Patch for matplotlib.__init__ for speedup

2010-09-21 Thread Ryan May
ople more familiar with the code to do a more, ahem, thorough review. Still, I wonder if there's a better way to maintain the runtime boost without needing a __getitem__... Need coffee for that. Ryan -- Ryan May Graduate Researc

Re: [matplotlib-devel] Patch for matplotlib.__init__ for speedup

2010-09-20 Thread Ryan May
e > profiling results (not only regarding this piece of code), please let me > know! First glance looks alright to me, though I haven't looked in heavy detail. I will defer, however, to those much more familiar with this code. Thanks for the patch, Ryan -- Ryan May G

Re: [matplotlib-devel] clf(), Axes3D and add_subplot

2010-09-02 Thread Ryan May
self._axstack/self._seen, it would seem that appending to this list would not by itself work. I'm willing to cook up the patch tomorrow if no one beats me to it. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma --

Re: [matplotlib-devel] clf(), Axes3D and add_subplot

2010-09-02 Thread Ryan May
On Sep 2, 2010, at 14:14, Benjamin Root wrote: > There was a bug report recently (not to the mailing list) where the reporter > noted that if an Axes3D was created using the fig.add_subplot(111, > projection='3d') or fig.gca(projection='3d'), then you can not clear the > figure using fig.clf()

Re: [matplotlib-devel] Issue with Ellipses and PatchCollections

2010-09-01 Thread Ryan May
nges, with a comment in patches.py as to why fill is a property. > > I was wondering whether it would be possible at least for now to implement > the get_fill() fix in PatchCollection? One of the packages I develop > (http://aplpy.sourceforge.net/) depends on match_original, and recent s

Re: [matplotlib-devel] Issue with Ellipses and PatchCollections

2010-08-27 Thread Ryan May
ms that the last change to that line was done by you (based on a bug *I* reported)? It apparently worked then: http://sourceforge.net/mailarchive/message.php?msg_name=487A5AE3.5070500%40gmail.com Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma --

Re: [matplotlib-devel] New Animation Class

2010-08-25 Thread Ryan May
On Fri, Jul 9, 2010 at 7:27 PM, John Hunter wrote: > On Fri, Jul 9, 2010 at 5:22 PM, Ryan May wrote: > >> I've been "hard" at work over the last couple of months putting >> together a set of classes that simplifies the creation of animations >> in matplotli

Re: [matplotlib-devel] small patch for trunk/matplotlib/lib/matplotlib/axis.py

2010-08-18 Thread Ryan May
1054,1055 > <         ticks = self.get_major_ticks() > --- >>         if minor: ticks = self.get_minor_ticks() >>         else:     ticks = self.get_major_ticks() Thanks for the contribution. Can you regenerate using: diff -u so we can easily apply to the tree? Thanks, Ryan --

Re: [matplotlib-devel] question about svnmerge

2010-07-20 Thread Ryan May
to what the NumPy folk are doing, but I can say that moving the trunk of one of my small subversion projects over to git was as easy as: 0) Create authors.txt to map svn committers to git committers 1) Checkout svn trunk using git-svn (which results in a git repo) 2) Push to github I was really surpri

Re: [matplotlib-devel] rendering problem in mplot3d

2010-07-19 Thread Ryan May
uld break > that use pattern. I think the fact that add_axes will just blindly add a duplicate axes is a bug. So why not have add_axes do something like the following: if ax not in axes_list: axes_list.append(ax) Anyone see anything wrong with this approach? Ryan -- Ryan May Graduate

Re: [matplotlib-devel] Fwd: [Numpy-discussion] ANN: Numpy runs on Python 3

2010-07-10 Thread Ryan May
On Sat, Jul 10, 2010 at 9:49 PM, John Hunter wrote: > On Sat, Jul 10, 2010 at 9:38 PM, Ryan May wrote: >> 2.6.  With Python 3.1, I get a compile failure with src/ft2font.cpp, >> which isn't surprising. > > I'm a little surprised ft2font is failing, since it is

Re: [matplotlib-devel] New Animation Class

2010-07-10 Thread Ryan May
ollow.  You can add a README in that dir suggesting > the use of the new API unless necessary. Define "bare metal." Since we have the new timer class, I could convert the old examples to be backend agnostic without using the animation framework. Just a thought. Thanks for the useful fe

Re: [matplotlib-devel] Fwd: [Numpy-discussion] ANN: Numpy runs on Python 3

2010-07-10 Thread Ryan May
On Sat, Jul 10, 2010 at 4:18 PM, John Hunter wrote: > On Sat, Jul 10, 2010 at 4:13 PM, Ryan May wrote: >> both, specifically check_for_tk(). Here we catch the actual exception >> object and use it to print an error message. If anyone has a >> suggestion (not print t

Re: [matplotlib-devel] Fwd: [Numpy-discussion] ANN: Numpy runs on Python 3

2010-07-10 Thread Ryan May
--- > This SF.net email is sponsored by Sprint > What will you do first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first > ___ > Matplotlib-devel mai

Re: [matplotlib-devel] ContourSet not an Artist?

2010-07-09 Thread Ryan May
On Jul 9, 2010, at 22:11, John Hunter wrote: > On Fri, Jul 9, 2010 at 9:59 PM, Eric Firing wrote: >> On 07/09/2010 11:45 AM, Ryan May wrote: >>> Hi, >>> >>> I just noticed that ContourSet only inherits ScalarMappable and >>> ContourLabeller, neithe

Re: [matplotlib-devel] New Animation Class

2010-07-09 Thread Ryan May
On Fri, Jul 9, 2010 at 5:22 PM, Ryan May wrote: > Hi, > > I've been "hard" at work over the last couple of months putting > together a set of classes that simplifies the creation of animations > in matplotlib. This started when I resurrected some old code for >

[matplotlib-devel] New Animation Class

2010-07-09 Thread Ryan May
f doing animations in matplotlib. This seems to be an area of frequent question on the mailing list, and I want this framework to lessen the questions, not increase them. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma # TODO: # * Documentation -- this will

[matplotlib-devel] ContourSet not an Artist?

2010-07-09 Thread Ryan May
t the ramifications would be. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone?

Re: [matplotlib-devel] nasty import behavior

2010-07-08 Thread Ryan May
tlib.pyplot as plt not move the import and complain about matplotlib's import behavior. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- This SF.net email is sponsored by Spri

Re: [matplotlib-devel] Help with blitting bug with subplots and markers

2010-07-06 Thread Ryan May
On Tue, Jul 6, 2010 at 10:19 AM, Michael Droettboom wrote: > On 07/04/2010 09:32 PM, John Hunter wrote: >> On Sat, Jul 3, 2010 at 11:53 AM, Ryan May  wrote: >> >>> On Sat, Jul 3, 2010 at 1:11 AM, Ryan May  wrote: >>> >>>> Alright, before I go t

Re: [matplotlib-devel] Adding more image format support...

2010-07-06 Thread Ryan May
k to manage the supported > file types should make this pretty easy. > > While adding a hard dependency on PIL is probably not a good idea, are > there any objections to making it a soft dependency? None here, especially when the alternative is writing our own bindings to the jpeg li

Re: [matplotlib-devel] Help with blitting bug with subplots and markers

2010-07-03 Thread Ryan May
On Sat, Jul 3, 2010 at 1:11 AM, Ryan May wrote: > Alright, before I go to bed, I found the following line in > src/_backend_agg.cpp at line 709 (in draw_markers()) makes all the > difference: > > set_clipbox(gc.cliprect, rendererBase); > > Commenting out this line fixes my

Re: [matplotlib-devel] Help with blitting bug with subplots and markers

2010-07-02 Thread Ryan May
ious state somewhere?). I'll look into this tomorrow, but it would probably be a lot easier with someone familiar with the code. Ryan On Sat, Jul 3, 2010 at 12:33 AM, Ryan May wrote: > Hi, > > I've been debugging this for hours now and could really use the help > of someon

[matplotlib-devel] Help with blitting bug with subplots and markers

2010-07-02 Thread Ryan May
ing effect. Anybody have a clue? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma #!/usr/bin/env python # Reveals a bug in blitting with multiple subplots caused by the use of # markers import time import gtk, gobject import matplotlib matplotlib.use(&#x

Re: [matplotlib-devel] [Python-modules-team] Bug#585442: python-matplotlib: crashes when calling axis() after imshow()

2010-06-21 Thread Ryan May
thon-modules-team mailing list >> python-modules-t...@lists.alioth.debian.org >> http://lists.alioth.debian.org/mailman/listinfo/python-modules-team >> > > > > -- > Sandro Tosi (aka morph, morpheus, matrixhasu) > My website: http://matrixhasu.altervista.org/ > Me a

Re: [matplotlib-devel] Bug rasterized image in pcolor and pcolormesh

2010-06-01 Thread Ryan May
l array in file. It's possible that there are slight differences that you can't really see that produce different arrays, but that won't cause a factor of 8 difference in size. My guess is that pcolormesh isn't rasterizing properly. Ryan -- Ryan May Graduate Research Ass

[matplotlib-devel] QuadMesh zorder

2010-05-28 Thread Ryan May
Anyone know if there's an explicit design choice for QuadMesh not taking kwargs, or is it just an omission? Ryan -- Ryan May Graduate Research Assistant School of Meteorology Un

Re: [matplotlib-devel] axes.set_xlim has wrong keyword documentation

2010-05-28 Thread Ryan May
just a copy-paste error. Surely. Fixed in SVN, thanks for the report. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- ___ Matplotlib-

Re: [matplotlib-devel] imsave, image size

2010-05-06 Thread Ryan May
.54) -> dots/inch * cm/m * inch/cm -> dots/m Am I missing something? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- ___

Re: [matplotlib-devel] New generic timers

2010-04-20 Thread Ryan May
On Tue, Apr 20, 2010 at 4:02 PM, John Hunter wrote: > On Tue, Apr 20, 2010 at 3:26 PM, Ryan May wrote: >> Hi, >> >> Continuing the spurt of (independent) development that's been going on >> lately, I committed support for generic timers. There's a base class

[matplotlib-devel] New generic timers

2010-04-20 Thread Ryan May
ion's that I promise to write once the new framework is checked in. Also, I didn't add a TimerBase implementation for the CocoaAgg backend. I have no idea about that toolkit, so I'd appreciate some help there so we can have an implementation for all of the active GUI toolkits. Any fe

Re: [matplotlib-devel] margins, locator_params, formatter offset

2010-04-20 Thread Ryan May
ed off, for example. No comments other than these seem like really good changes to reduce the barrier for the users. Nice work! Ryan -- Ryan May Graduate Research Assistant Schoo

Re: [matplotlib-devel] Close events

2010-04-16 Thread Ryan May
that calls the FigureCanvasBase.close_event(). Ryan On Thu, Apr 15, 2010 at 5:18 PM, Ryan May wrote: > Hi, > > Does anyone know if there's a matplotlib event that fires when a > figure window is closed? I can't seem to find one. > > If there's not one, any I shoul

[matplotlib-devel] Close events

2010-04-15 Thread Ryan May
Hi, Does anyone know if there's a matplotlib event that fires when a figure window is closed? I can't seem to find one. If there's not one, any I shouldn't add one? I need to stop my animation timers when the figure is closed. Ryan -- Ryan May Graduate Research Assistant S

Re: [matplotlib-devel] getting legend loc

2010-04-09 Thread Ryan May
a helper for self.set_aspect('equal', adjustable='box', anchor='C') self.set_autoscale_on(False) You can get all of these properties individually: ax = plt.gca() ax.get_aspect() ax.get_adjustable() ax.get_anc

Re: [matplotlib-devel] Problem with Quiver+Basemap

2010-04-02 Thread Ryan May
On Fri, Apr 2, 2010 at 11:42 AM, Eric Firing wrote: > Ryan May wrote: >> >> On Fri, Apr 2, 2010 at 1:23 AM, Eric Firing wrote: >>>> >>>> On Fri, Mar 26, 2010 at 12:13 PM, Ryan May wrote: >>>>> >>>>> I just hit a problem

Re: [matplotlib-devel] Problem with Quiver+Basemap

2010-04-02 Thread Ryan May
On Fri, Apr 2, 2010 at 1:23 AM, Eric Firing wrote: >> On Fri, Mar 26, 2010 at 12:13 PM, Ryan May wrote: >>> I just hit a problem with using quiver with Basemap when when >>> angles='xy'.  Because Basemap's x,y units are in meters, you end up >>>

[matplotlib-devel] Animation Class

2010-04-01 Thread Ryan May
e necessary to just to a straightforward Animation subclass. The code still needs quite a bit of clean up and thought to make sure that the classes are broken up into the proper parts, as well as documentation, but I wanted to see if this seems like a good way to go to add easy animation support to

Re: [matplotlib-devel] Problem with Quiver+Basemap

2010-04-01 Thread Ryan May
Ping. Not sure if you missed it first time around or are just that busy. Ryan On Fri, Mar 26, 2010 at 12:13 PM, Ryan May wrote: > Eric, > > I just hit a problem with using quiver with Basemap when when > angles='xy'.  Because Basemap's x,y units are in meters, you en

[matplotlib-devel] Problem with Quiver+Basemap

2010-03-26 Thread Ryan May
ensure we are always making small shifts in X, Y. I managed to fix the problem locally by setting: angles, lengths = self._angles_lengths(U, V, eps=0.0001 * self.XY.max()) but I'm not sure if you would want a different fix. If you're happy with this fix, I'll go ahead

Re: [matplotlib-devel] An easier way to create figure and group of axes; useful?

2010-03-21 Thread Ryan May
and above, we could add the needed methods to the Axes object, which would just be ignored by python <2.5. That's not a bad idea. I'm +1 on the idea. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma --

Re: [matplotlib-devel] gtk.Tooltips() deprecated

2010-03-20 Thread Ryan May
On Sat, Mar 20, 2010 at 5:53 PM, Eric Firing wrote: > Ryan May wrote: >> >> Hi, >> >> I just started running PyGTK 2.16 and noticed the following everytime >> I run a matplotlib script: >> >> >> /home/rmay/.local/lib/python2.6/s

[matplotlib-devel] gtk.Tooltips() deprecated

2010-03-20 Thread Ryan May
to be an easy way to support both)? Or do we just bump our required version? 2.12.0 was released in fall 2007. I'm not sure what versions are supplied with the various distros. Thoughts? Ryan -- Ryan May Graduate Research Assistant School of Meteorology Universit

Re: [matplotlib-devel] An easier way to create figure and group of axes; useful?

2010-03-18 Thread Ryan May
gt; use case.  I suggest providing a kwarg, e.g. "squeeze=True" as the > default, to eliminate zero-size-dimensions from the array, and False for > the case where nrows and/or ncols could be zero but one wants to be able > to iterate over the resulting

Re: [matplotlib-devel] Contouring unstructured triangular grids

2010-03-15 Thread Ryan May
erwhelmingly +1 on having such functionality available. Are you looking at making it possible to construct a triangulation from the delaunay triangulation that is used by griddata? (Sorry, I didn't follow the thread that closely.) Ryan -- Ryan May Graduate Research Assistant School of

Re: [matplotlib-devel] registerable backend and minor refactoring of backend-ps

2010-02-03 Thread Ryan May
> will be welcomed. > > Also committed is a some refactoring of ps backend but the change > should be quite transparent. I like it. Out of curiosity, is there anything that this approach brings (other than simplicity)

Re: [matplotlib-devel] zorder for contours

2010-01-28 Thread Ryan May
On Thu, Jan 28, 2010 at 1:03 PM, Eric Firing wrote: > Ryan May wrote: >> Unless I completely misunderstand zorder, the contour should be *on >> top* of the rectangle.  Also note that printing the zorder for the >> contour's collection (a LineCollection object) gives a

[matplotlib-devel] zorder for contours

2010-01-28 Thread Ryan May
willing to change ContourSet to pop arguments off of **kwargs so that it can see if some aren't used and throw an exception if not all are used. On the other hand, this could break existing code that are passing extra/useless kwargs, so maybe a warning would be better? Ryan -- Ryan M

Re: [matplotlib-devel] Persistent Matplotlib Figures

2009-12-19 Thread Ryan May
plexity.  We have enough of that already.  We need to > think about how to clean up mpl and make it easier to maintain and > improve, not clutter it with ever more complexity. +1 That pretty much sums up how I feel. Ryan -- Ryan May Graduate Research Assistant School of Meteorology Univ

Re: [matplotlib-devel] Persistent Matplotlib Figures

2009-12-17 Thread Ryan May
pt can just read in the file and do the plotting. This is exactly how my workflow is set up. I'd be happy to address any concerns you see with doing things this way. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma --

Re: [matplotlib-devel] AutoDateFormatter/AutoDateLocator

2009-10-16 Thread Ryan May
tests passing. I've also pretty much expended all the time I have for matplotlib development in the short term. So if one of the other devs is interested, awesome. But for me at this point, I can't go study yet more code when I have something IMO ready to check in. Ryan --

Re: [matplotlib-devel] AutoDateFormatter/AutoDateLocator

2009-10-16 Thread Ryan May
nearly so), but this breaks compatibility (where tz was the only argument). Also, to me, it would be nice to tick multiples of the interval by default. Thoughts? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma Sent from Norman, Oklahoma, United States

Re: [matplotlib-devel] AutoDateFormatter/AutoDateLocator

2009-10-14 Thread Ryan May
ion makes sense to you. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need t

[matplotlib-devel] AutoDateFormatter/AutoDateLocator

2009-10-14 Thread Ryan May
mentioned elsewhere in the page and in fact have no link from the image. They're also not present in the __all__ in the dates module. If this is just an oversight, what do I need to do to make the classes show up in the docs? Ryan -- Ryan May Graduate Research Assistant School of Meteor

Re: [matplotlib-devel] proposed change to colors.py

2009-09-30 Thread Ryan May
le/p25691605/colors.py > colors.py svn diff > filename Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the o

Re: [matplotlib-devel] Merge tracking of v0_99_maint broken?

2009-08-31 Thread Ryan May
On Sat, Aug 22, 2009 at 3:24 AM, Ryan May wrote: > > > On Sat, Aug 22, 2009 at 3:01 AM, Jouni K. Seppänen wrote: > >> I fixed some doc typos on the v0_99_maint branch and was going to merge >> the fixes to the trunk, but it didn't work: >> >> % svn

Re: [matplotlib-devel] Merge tracking of v0_99_maint broken?

2009-08-24 Thread Ryan May
> /branches/v0_99_maint > /branches/mathtex > /branches/v0_98_5_maint > > > John Hunter wrote: > >> On Sat, Aug 22, 2009 at 3:24 AM, Ryan May wrote: >> >> >> >>> Same behavior here. I had been having trouble doing any merges, but neve

Re: [matplotlib-devel] Merge tracking of v0_99_maint broken?

2009-08-22 Thread Ryan May
nches/v0_98_5_maint > > I'm pretty sure that this used to work. What has changed in the repository? Same behavior here. I had been having trouble doing any merges, but never had tracked it down. I guess this is related. Ryan -- Ryan May Graduate Research Assistant School of Met

Re: [matplotlib-devel] SF.net SVN: matplotlib:[7506] branches/v0_99_maint/lib/matplotlib/lines.py

2009-08-19 Thread Ryan May
duplicated when set_data() was called. According to the code, np.asarray() will be called if ma.isMaskedArray() returns false. Am I missing something? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma

Re: [matplotlib-devel] colorbar_doc is visible as a function name with Ipython --pylab import

2009-08-06 Thread Ryan May
On Thu, Aug 6, 2009 at 2:03 PM, John Hunter wrote: > On Thu, Aug 6, 2009 at 1:59 PM, Ryan May wrote: > > On Thu, Aug 6, 2009 at 1:55 PM, John Hunter wrote: > >> > >> On Thu, Aug 6, 2009 at 1:50 PM, Ryan May wrote: > >> > > >> > On Thu,

Re: [matplotlib-devel] colorbar_doc is visible as a function name with Ipython --pylab import

2009-08-06 Thread Ryan May
On Thu, Aug 6, 2009 at 1:55 PM, John Hunter wrote: > On Thu, Aug 6, 2009 at 1:50 PM, Ryan May wrote: > > > > On Thu, Aug 6, 2009 at 1:38 PM, Gökhan Sever > wrote: > >> > >> Shouldn't colorbar_doc name be hidden from users? It doesn't look like &

Re: [matplotlib-devel] colorbar_doc is visible as a function name with Ipython --pylab import

2009-08-06 Thread Ryan May
ch. Fixed in 7406. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma Sent from Norman, OK, United States -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day tr

Re: [matplotlib-devel] example data in example code

2009-08-05 Thread Ryan May
ehandle >raise ValueError('fname must be a string or file handle') > ValueError: fname must be a string or file handle > > Perhaps we could return a plain file handle pointing to the cached data? Another option is to use StringIO to create a new file-like object afte

Re: [matplotlib-devel] curvelinear coordinate support in axes_grid and a possible refactoring of mpl.

2009-08-01 Thread Ryan May
. http://p.sf.net/sfu/bobj-july > ___ > Matplotlib-devel mailing list > Matplotlib-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > -- Ryan May Graduate Research Assistant School of Meteorology

Re: [matplotlib-devel] please add this example: legend translucent

2009-07-21 Thread Ryan May
es), there's nothing to be changed. It will be automatically included. Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma -- ___ M

Re: [matplotlib-devel] mplot3d update

2009-06-15 Thread Ryan May
On Sun, Jun 14, 2009 at 7:13 PM, Gökhan SEVER wrote: > > Could you tell me how to import axes3d module from within Ipython? > from mpl_toolkits.mplot3d import axes3d Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of

Re: [matplotlib-devel] Tests and matplotlibrc

2009-05-20 Thread Ryan May
he tests, this way we are always testing > against the defaults. If the defaults ever change it would also > > allow us to more easily catch those changes to note if there is any > negative consequences of the change. > > > OK, Ryan, go ahead with this. > Done. Ryan -- R

Re: [matplotlib-devel] Units issue

2009-05-20 Thread Ryan May
soon. That's not to say that it's not currently functional, I just believe that some ufuncs don't work properly and that there are some corner cases that don't work, which I think is why Darren hasn't made an official release/announcement. Last time I played with it ho

Re: [matplotlib-devel] Units issue

2009-05-20 Thread Ryan May
On Wed, May 20, 2009 at 11:54 AM, Christopher Barker wrote: > Ryan May wrote: > > use the units in basic_units.py (in the examples/units directory). > > This looks like pretty cool stuff. However, I can't seem to find > matplotlib.units or basic_units.py in the online

Re: [matplotlib-devel] Units issue

2009-05-20 Thread Ryan May
On Wed, May 20, 2009 at 11:38 AM, Ryan May wrote: > Hi, > > In looking over a test failure, I'm seeing some behavior that doesn't make > sense to me. It looks like data passed to a line object is being improperly > converted when units are involved. Here's a v

  1   2   3   >