Re: [Matplotlib-users] need an icon for a new featureH

2012-07-19 Thread Nicolas Rougier
What size/format do you need and would that be an option to transform/use Tango icons ? http://tango.freedesktop.org/ http://commons.wikimedia.org/wiki/Tango_icons Tango (for fullscreen but might suit tight-layout) inline: view-fullscreen.png inline: view-fullscreen.png inline:

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Alexander Eberspaecher
On Wed, 18 Jul 2012 15:50:50 -0700 Brad Malone brad.mal...@gmail.com wrote: Hi, I have a collection of 4 plots that I spent some time in constructing. They themselves include modifications of the axes labels, have rotated subplots next to them, etc. I need to be able to take these 4 plots and

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Francesco Montesano
Hi Brad, 2012/7/19 Alexander Eberspaecher alexander.eberspaec...@ovgu.de: On Wed, 18 Jul 2012 15:50:50 -0700 Brad Malone brad.mal...@gmail.com wrote: Hi, I have a collection of 4 plots that I spent some time in constructing. They themselves include modifications of the axes labels, have

[Matplotlib-users] gallery link broken/not working

2012-07-19 Thread Francesco Montesano
Hi, roaming through the gallery I've found that in http://matplotlib.sourceforge.net/examples/pylab_examples/demo_tight_layout_00.html http://matplotlib.sourceforge.net/examples/pylab_examples/demo_tight_layout_01.html http://matplotlib.sourceforge.net/examples/axes_grid/demo_axes_divider_01.html

Re: [Matplotlib-users] need an icon for a new featureH

2012-07-19 Thread Francesco Montesano
2012/7/19 Nicolas Rougier nicolas.roug...@inria.fr: What size/format do you need and would that be an option to transform/use Tango icons ? http://tango.freedesktop.org/ http://commons.wikimedia.org/wiki/Tango_icons Tango (for fullscreen but might suit tight-layout)

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Damon McDougall
On Thu, Jul 19, 2012 at 10:23:09AM +0200, Alexander Eberspaecher wrote: On Wed, 18 Jul 2012 15:50:50 -0700 Brad Malone brad.mal...@gmail.com wrote: Hi, I have a collection of 4 plots that I spent some time in constructing. They themselves include modifications of the axes labels, have

Re: [Matplotlib-users] gallery link broken/not working

2012-07-19 Thread Phil Elson
I can confirm the bad link. Would you mind opening a new issue on github for this? github.com/matplotlib/matplotlib/issues/new Thanks, On 19 July 2012 10:15, Francesco Montesano franz.berges...@gmail.com wrote: Hi, roaming through the gallery I've found that in

Re: [Matplotlib-users] gallery link broken/not working

2012-07-19 Thread Francesco Montesano
done: https://github.com/matplotlib/matplotlib/issues/1024 Fra 2012/7/19 Phil Elson pelson@gmail.com: I can confirm the bad link. Would you mind opening a new issue on github for this? github.com/matplotlib/matplotlib/issues/new Thanks, On 19 July 2012 10:15, Francesco Montesano

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Benjamin Root
On Thu, Jul 19, 2012 at 4:30 AM, Damon McDougall damon.mcdoug...@gmail.comwrote: On Thu, Jul 19, 2012 at 10:23:09AM +0200, Alexander Eberspaecher wrote: On Wed, 18 Jul 2012 15:50:50 -0700 Brad Malone brad.mal...@gmail.com wrote: Hi, I have a collection of 4 plots that I spent some time

Re: [Matplotlib-users] need an icon for a new featureH

2012-07-19 Thread Benjamin Root
On Thu, Jul 19, 2012 at 3:49 AM, Francesco Montesano franz.berges...@gmail.com wrote: 2012/7/19 Nicolas Rougier nicolas.roug...@inria.fr: What size/format do you need and would that be an option to transform/use Tango icons ? http://tango.freedesktop.org/

Re: [Matplotlib-users] wxpython matplotlib figure resize

2012-07-19 Thread Joshua Koehler
Not a problem. Hopefully it works for you. If you have tested it already would you mind posting what your results were? If you figured something else out as well that works for you I would also be appreciative if you posted your approach. Regards, Josh On Jul 16, 2012, at 4:49 PM, Keith Jones

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Brad Malone
Personally, I use the subfigure package and it works really well. Also, +1 for reusable figures. The downside of the subfigure package is your latex code looks that much worse, but if the journal doesn't mind you using the subfigure package, then I recommend it. Thanks for the comments

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Damon McDougall
On Thu, Jul 19, 2012 at 07:56:29AM -0700, Brad Malone wrote: Personally, I use the subfigure package and it works really well. Also, +1 for reusable figures. The downside of the subfigure package is your latex code looks that much worse, but if the journal doesn't mind you using the

Re: [Matplotlib-users] Combining 4 plots into one figure

2012-07-19 Thread Andre' Walker-Loud
Hi Brad, Have you have tried using the tabular environment? I haven't tried using \vspace inside the figure, but I suspect that would also let you squeeze the figures closer together. \begin{figure} \begin{tabular}{cc} %for a two columns of figures

Re: [Matplotlib-users] mimic alpha (channel) v0.1

2012-07-19 Thread Francesco Montesano
2012/7/18 Francesco Montesano franz.berges...@gmail.com: 2012/7/18 Jonathan Slavin jsla...@cfa.harvard.edu: Ben, Yes, you're right, but I doubt any solution that involves mimicking an alpha channel will work for one case that I've been using. That is, making the legend box partially

[Matplotlib-users] Drawing arrows on Axes

2012-07-19 Thread ObsessiveMathsFreak
I used sagemath which uses matplotlib as its plotting interface. After extensive investigation I was extremely disappointed to find that matplotlib has no fundamental support for drawing arrows at the ends of axes. Is there no way that such basic functionality could be included in the next

[Matplotlib-users] How to Turn Off Blocking by Method show()

2012-07-19 Thread JonBL
I have a Python program which calls matplotlib's show() method to display a plot, but control does not return to my program until I close the displayed figure. I want control to immediately return to my program so that I can display additional figures as well. The doco (matplotlib 1.1.1) for the

Re: [Matplotlib-users] How to Turn Off Blocking by Method show()

2012-07-19 Thread JonBL
Solved - just discovered methods ion() and ioff() which do the job. JonBL wrote: I have a Python program which calls matplotlib's show() method to display a plot, but control does not return to my program until I close the displayed figure. I want control to immediately return to my program

Re: [Matplotlib-users] How to Turn Off Blocking by Method show()

2012-07-19 Thread Benjamin Root
On Thu, Jul 19, 2012 at 11:34 PM, JonBL jc.bl...@bigpond.net.au wrote: I have a Python program which calls matplotlib's show() method to display a plot, but control does not return to my program until I close the displayed figure. I want control to immediately return to my program so that I