Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-25 Thread ChaoYue
Hi Mat, Just one words, the plt. functions probably normally pick the last active axes to act on. many of these functions are methods of axes object, you can call directly from there. Chao On Sat, May 25, 2013 at 1:14 PM, mat [via matplotlib] < ml-node+s1069221n41131...@n5.nabble.com> wrote:

Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-25 Thread ChaoYue
Is this what you want? I change a bit of the code and put some example data there. fig,axs = plt.subplots(nrows=2, ncols = 2, figsize = (6, 6) ) plt.subplots_adjust( left = 0.0505, right = 0.96, bottom = 0.05, top = 0.95 , wspace = 0.07, hspace = 0.12) left_ax, right_ax = Axes_Replace_Split_Ax

Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-24 Thread ChaoYue
Hi Mat, so you have two points in the TODO: #TODO: #plot something on the left side of suplot 2 --> plt.plot(xx,yy, marker = 'o', color = 'k') does not work #change the y axis of suplot 2, on the right and on the left side the first one, is this what you want? left_ax.plot(xx,yy, marke

Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-24 Thread ChaoYue
Hi, could you send an attachment to show what you've achieved so far? Chao -- View this message in context: http://matplotlib.1069221.n5.nabble.com/Is-it-possible-to-truncate-axes-in-matplotlib-tp41092p41122.html Sent from the matplotlib - users mailing list archive at Nabble.com. ---

Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-21 Thread ChaoYue
Hi Mat, this has been asked before. see here: http://matplotlib.1069221.n5.nabble.com/quot-zig-zag-quot-to-represent-suppressed-0-on-axis-td40849.html#a40858 cheers, Chao On Mon, May 20, 2013 at 8:29 PM, mat [via matplotlib] < ml-node+s1069221n41092...@n5.nabble.com> wrote: > Dear community, >