Re: [Matplotlib-users] Plotting style

2015-03-06 Thread Marin GILLES
This package is indeeed pretty nice, and I will surely take a look into it, but the way styles are added does not seem quite practical or shareable. In my opinion, having a style file for each paper makes things more flexible, although this package may get more control out of the box. Also, not b

Re: [Matplotlib-users] Plotting style

2015-03-06 Thread Olga Botvinnik
There's also the "plotsettings" package which makes it easy to switch between styles required by different papers. https://pypi.python.org/pypi/plotsettings On Wed, Mar 4, 2015 at 1:29 PM Marin GILLES wrote: > Le 04/03/2015 06:21, Tony Yu a écrit : > > On Tue, Mar 3, 2015 at 11:50 AM, Gökhan

Re: [Matplotlib-users] Multiplot with one colorbar

2015-03-06 Thread Jody Klymak
Hi, I guess I don't understand the "[axx for axx in ax.flat]" command, but this steals from all the axes. Cheers, Jody fig,ax = plt.subplots(2,2) for i in range(2): for j in range(2): im=ax[i,j].imshow(np.ones((20,20))) im.set_clim([-1.,2.]) cax,kw = mpl.colorbar.make_axes

Re: [Matplotlib-users] Multiplot with one colorbar

2015-03-06 Thread Eric Firing
On 2015/03/05 11:36 PM, Dyah rahayu martiningrum wrote: > Hello all, > > I make multi plot with colorbars. I need help, how do make only one > colorbar for six panels? I also want to show only lowest x-axis. I copy > my recent code and figure here. An old example of something like this is here:

[Matplotlib-users] [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-users] Multiplot with one colorbar

2015-03-06 Thread Arnaldo Russo
Hi, . Your example is not much clear. It's better post some short example and a running piece of code. btw, maybe your problem should be solved with this post: http://stackoverflow.com/questions/13784201/matplotlib-2-subplots-1-colorbar Cheers, Arnaldo --- *Arnaldo D'Amaral Pereira Granja Russo*

[Matplotlib-users] Multiplot with one colorbar

2015-03-06 Thread Dyah rahayu martiningrum
Hello all, I make multi plot with colorbars. I need help, how do make only one colorbar for six panels? I also want to show only lowest x-axis. I copy my recent code and figure here. # Open file fd = nc.Dataset(fname, 'r') # Read variables beam = fd.variables['beam'][:] rng =