> --
> 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
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
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
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
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
&
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
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
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
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
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
; 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
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
, 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
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,
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
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
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
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
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
---
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
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
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
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
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
-
[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
. 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
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
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
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
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
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
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
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
--
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()
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
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
--
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
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
--
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
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
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
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
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
---
> 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
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
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
>
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
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?
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
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
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
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
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
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(
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
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
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
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-
.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
--
___
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
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
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
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
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
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
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
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
>>>
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
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
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
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
--
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
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
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
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
> 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)
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
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
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
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
--
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
--
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
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
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
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
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
> /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
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
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
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,
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
&
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
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
. 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
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
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
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
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
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
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 - 100 of 227 matches
Mail list logo