David Moore wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Ryan May wrote:
>> Test. Please disregard.
>>
>> Ryan
>>
>> --
>> Ryan May
>> Graduate Research Assistant
>> School of Meteorology
>> University of Oklahoma
>>
> Hi Ryan,
>
> Gmail never shows you your own emails. Your ema
Ryan May wrote:
> (Sorry if this is a duplicate)
>
> Hi,
>
> I'm trying to make a Skew-T LogP plot, an important plot in meteorology,
> using matplotlib (mainly to help convert people away from much more
> horrible solutions). You can see one here:
> http://www.rap.ucar.edu/weather/upper/oun.gi
John Hunter wrote:
> On Thu, Jun 12, 2008 at 8:56 PM, T J <[EMAIL PROTECTED]> wrote:
>> I am making a scatter plot and want the legend to display the symbols.
>> This functionality doesn't seem to exist, so I have followed the
>> workaround outlined here:
>>
>> http://www.nabble.com/Legend-for-a-s
I can't explain why this changed in numpy or why PyArray_FromDims works
and PyArray_SimplyNewFromData doesn't, but...
In _backend_agg.cpp, I just used a npy_intp array for dimensions
everywhere. I think the difference may only matter on 64 platforms
where sizeof(int) != sizeof(void*), such as
Thanks. This has been committed to the SVN trunk r5502.
Cheers,
Mike
Michael Droettboom wrote:
> Looks like a nice solution to me. I don't use pie charts much myself,
> so I'll give it some time to see if there are any dissenters. If none,
> I'll go ahead and commit this to SVN.
>
> Thanks!
How much pain would it cause if we required docutils 0.5 to build the docs?
In working on this "use pngs if in html, pdfs if in latex"
functionality, the solutions has actually been fairly involved. It's
probably doable in docutils-0.4, but I'd prefer not to have write and
maintain two fairly
Ignore this. It's not as bad as I thought.
Mike
Michael Droettboom wrote:
> How much pain would it cause if we required docutils 0.5 to build the docs?
>
> In working on this "use pngs if in html, pdfs if in latex"
> functionality, the solutions has actually been fairly involved. It's
> proba
On Fri, Jun 13, 2008 at 7:40 AM, Manuel Metz <[EMAIL PROTECTED]> wrote:
> Paul Novak had planed to work on scatter legend and I am also interested in
> this, so we came up with a code fragment, but it doesn't do the job well. I
> think a legend for scatter is something that is really needed for
>
"John Hunter" <[EMAIL PROTECTED]> writes:
> On Thu, Jun 12, 2008 at 3:38 PM, Ken McIvor <[EMAIL PROTECTED]> wrote:
> > On Jun 12, 2008, at 3:22 PM, John Hunter wrote:
> >>
> >> If some wx guru sees an easy fix here, by all means add it.
> >
> > Not to imply that I'm a guru, but I'll try to look in
Greetings. It seems that the list of backends in the matplotlibrc.template
file is out-of-sync with the available backend names. In particular,
"Qt4Agg", "CocoaAgg", and "emf" are missing, and "GD" and "Paint" are
present but not available.
-
I have added a new "plot" directive to our doc infrastructure that does:
"""
A special directive for including a matplotlib plot.
Given a path to a .py file:
- On HTML, will include a .png with a link to a high-res .png.
- On LaTeX, will include a .pdf
This directive supports all of the option
On Fri, Jun 13, 2008 at 9:25 AM, Chris Walker
<[EMAIL PROTECTED]> wrote:
>> So if we want to support stable, *and*
>> the latest releases, we've got a lot of ongoing compatibility work to
>> do. For backend maintainers willing to do it, I think that will be
>> good. But I am hesitant to target s
On Fri, Jun 13, 2008 at 9:39 AM, Stan West <[EMAIL PROTECTED]> wrote:
> Greetings. It seems that the list of backends in the matplotlibrc.template
> file is out-of-sync with the available backend names. In particular,
> "Qt4Agg", "CocoaAgg", and "emf" are missing, and "GD" and "Paint" are
> present
On Fri, Jun 13, 2008 at 9:40 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote:
> This task took a lot longer than I expected, so I'm going to have to
> pause for a while. But here's a couple of notes for improvement if
> anyone wants to take it on:
>
> 1) Clicking on the image in HTML currently g
"John Hunter" <[EMAIL PROTECTED]> writes:
> On Fri, Jun 13, 2008 at 9:25 AM, Chris Walker
> <[EMAIL PROTECTED]> wrote:
>
> >> So if we want to support stable, *and*
> >> the latest releases, we've got a lot of ongoing compatibility work to
> >> do. For backend maintainers willing to do it, I thi
Mike,
John's mention of an upcoming bugfix release brought to mind a glitch in
0.98: the default position of the polar plot title is too low (as is the
default position of the title on an ordinary plot with tick_top()).
It looks like you were working on this with your autoLayout option, but
wh
John Hunter wrote:
> On Fri, Jun 13, 2008 at 7:40 AM, Manuel Metz <[EMAIL PROTECTED]> wrote:
>
>> Paul Novak had planed to work on scatter legend and I am also interested in
>> this, so we came up with a code fragment, but it doesn't do the job well. I
>> think a legend for scatter is something t
Hi,
I got the following messages after clicking with mouse in my
application:
Traceback (most recent call last):
File
"/usr/lib/python2.4/site-packages/matplotlib-0.98.0-py2.4-linux-i686.egg/matplotlib/backends/backend_gtk.py",
line 201, in button_release_event FigureCanvasBase.button_release_
Hi,
setting colors with transparency no longer works for me in
0.98.0, but worked before in 0.91.3:
c = matplotlib.collections.LineCollection(lines, colors = lineColors)
This shows the lines only with the base colors without transparency.
However, if I modify the code to the following, the colo
On Friday 13 June 2008 01:22:24 pm John Hunter wrote:
> On Fri, Jun 13, 2008 at 9:40 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote:
> > This task took a lot longer than I expected, so I'm going to have to
> > pause for a while. But here's a couple of notes for improvement if
> > anyone wants to
Jeff Whitaker wrote:
> Ryan May wrote:
>> (Sorry if this is a duplicate)
>>
>> Hi,
>>
>> I'm trying to make a Skew-T LogP plot, an important plot in
>> meteorology, using matplotlib (mainly to help convert people away from
>> much more horrible solutions). You can see one here:
>> http://www.ra
I love working with people who know what they are doing.
Thanks guys, for the htmlonly directive. I was able to use it to clean up a
few annoyances in the pdf document, like some badly formatted content at the
beginning of each part, and the hyperlink on the main page to download the
pdf docume
Ryan May wrote:
> Thanks. I also managed to find a matlab implementation, which was
> straightforward to port over. I'm working on fleshing out the full
> Skew-T look right now. As far as using the transforms, here's the
> question: Does anyone besides the meteorologists have a need for a p
Eric Firing wrote:
> Ryan May wrote:
>
>> Thanks. I also managed to find a matlab implementation, which was
>> straightforward to port over. I'm working on fleshing out the full
>> Skew-T look right now. As far as using the transforms, here's the
>> question: Does anyone besides the meteoro
On Fri, Jun 13, 2008 at 3:20 PM, Darren Dale <[EMAIL PROTECTED]> wrote:
> I just deleted the static_figs directory from svn, and moved the contents into
> pyplots. The generated figures were committed to svn as well, so they should
> not be auto-generated. This way we can consistently use the nice
25 matches
Mail list logo