[ Sorry for the cross-post, but I know this is something that has hit
quite a few people on this list. If you have any questions on it,
please ask on the ipython list, this is just an FYI ]
Hi all,
there's a very old, *extremely* annoying bug that multiple people have
asked about (on list and in
Eric Firing wrote:
> Glenn,
>
> The slowness is almost entirely in the line
>
> rgba = lut[xa]
>
> where lut is a 2-D uint8 table and xa is an array of indices.
>
> I have replaced that in svn with
>
> rgba = lut.take(xa, axis=0)
>
> which cuts the time in half!
This should be reduce
John Burkhart wrote:
> Jeff,
>
> Apologies for dual emails... my earlier one wasn't meant to be sent...
>
> I was hoping you could expand slightly (or at least provide an example)
> on #1 below. As I said earlier, I now have the GEOTIFF information which
> should help, and a customized version
Andrea Gavana wrote:
Hi All,
I was wondering about custom markers in the scatter method, and I
thought to ask here for some suggestions.
Basically, I have 3 variables to show, which are oil, gas and water
production. I would like to define the bubble size by the sum of these
three variables (
Hello everyone,
I'm running matplotlib 0.91.2, python 2.5.1, under Windows, and I have
the following problem:
I have a function, svgf(), that takes some xml data as input,
generates a figure from it, and then saves it to a file or returns the
svg data as another bunch of xml.
It appears