[matplotlib-devel] Status of toolbar/toolmanager changes (not working for me)?

2016-06-09 Thread Rob Clewley
I'm using v1.5.1 and I was reading the discussion on https://github.com/matplotlib/matplotlib/pull/3652 and trying to reproduce the toolbar manipulation shown at https://github.com/fariza/pycon2015/blob/master/ToolDemo.ipynb I can't get it to work from either regular python or ipython (console),

[matplotlib-devel] [ANN] GSOC project for data / geometry visual analysis needs student with technical matplotlib proficiency

2015-03-06 Thread Rob Clewley
Hi, One final reminder that I am a mentor for two Google Summer of Code projects that involve extensive matplotlib GUI development for python scientific software. The INCF (incf.org) is sponsoring two GSOC projects that will directly benefit PyDSTool (http://pydstool.sf.net), a math modeling tool

Re: [matplotlib-devel] Request: make plotting of a single point more convenient

2009-07-25 Thread Rob Clewley
I wrote a wrapper to do this for my own code because I wanted it so much. I can't see why it would be a problem to support, it's only one extra if statement. +1 from me! On Sat, Jul 25, 2009 at 1:16 AM, Jan Müller wrote: > basically this works: > > plot([1], [1], "*") > > but I think it would be

Re: [matplotlib-devel] Updating MPlot3D to a more recent matplotlib.

2009-03-05 Thread Rob Clewley
On Thu, Mar 5, 2009 at 10:39 AM, Ondrej Certik wrote: >> OK, but it wasn't clear from the example that I could plot a 3D array >> of arbitrary data points. The way that you put together the demo plots > > As I understand it, it plots triangles and/or wireframe in the end. > Currently I think our

Re: [matplotlib-devel] Updating MPlot3D to a more recent matplotlib.

2009-03-05 Thread Rob Clewley
>> Yes, I didn't know that either. But it's not clear if I can plot >> discrete data using this interface - at least the examples on the wiki > > I am not sure if I understand your question, but It only plots > discrete data --- it takes some sympy expression, evaluates it on a > discrete grid and

Re: [matplotlib-devel] Updating MPlot3D to a more recent matplotlib.

2009-03-05 Thread Rob Clewley
On Thu, Mar 5, 2009 at 5:14 AM, Johann Cohen-Tanugi wrote: > wouaouh. if I had known that sumpy had this functionality, I would > have downloaded it ages ago. This is a good example of justified > 'taylorisation', IMHO. > Big +1 on seing this moved from sympy to matplotlib. I am not expert at

Re: [matplotlib-devel] Updating MPlot3D to a more recent matplotlib.

2009-03-03 Thread Rob Clewley
On Tue, Mar 3, 2009 at 11:39 AM, John Hunter wrote: > Well, it is painfully slow, since it does everything in software, and there > are some corner cases where the zorder clipping is broken in the presence of > alpha transparency, and it doesn't do lighting, shadows, etc But it > does do eno

Re: [matplotlib-devel] Suggested new features for boxplot -- code and example graphic included

2007-03-07 Thread Rob Clewley
My apologies, line 195 of my previously-attached python file containing the boxplot method should have read if fill and not no_box: i.e. using the parameter 'fill' and not 'dofill'. Sorry for the typo! - Take Su