|
From: Jae-Joon L. <lee...@gm...> - 2011-08-23 04:08:59
|
On Thu, Aug 18, 2011 at 5:53 PM, mogliii <mo...@gm...> wrote: > 2) I want to make a shared y-axis label. I found this page: > http://www.scipy.org/Cookbook/Matplotlib/Multiple_Subplots_with_One_Axis_Label > But any additional axis I put before the gridspec axis is not shown in > the end. Is there a special procedure that can be used together with > gridspec? This is general behavior of subplot command. http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.subplot If you want to suppress this, do something like fig.add_subplot(gs[0]) Regards, -JJ |