[Matplotlib-users] One colorbar for many plot

2014-05-20 Thread Dyah rahayu martiningrum
I am a newbie in python and I try to plot data like below : base_dir = 'C:/DATA2013/Day_E/' nc_fnames = ['20130203.faieb3p4g.nc', '20130203.faieb3p4g.nc','20130203.faieb3p4g.nc'] # beams ibeams = [0,1,2] # Change directory os.chdir(base_dir) for i, fname in enumerate(nc_fnames): # Open file

[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 =

Re: [Matplotlib-users] Multiplot with one colorbar

2015-03-11 Thread Dyah rahayu martiningrum
> > On Mar 6, 2015, at 9:39 AM, Eric Firing wrote: > > > > 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 a