@@ -1262,21 +1262,21 @@ def subplots(self, nrows=1, ncols=1, sharex=False, sharey=False,
12621262 - 'col': each subplot column will share an x- or y-axis.
12631263
12641264 When subplots have a shared x-axis along a column, only the x tick
1265- labels of the bottom subplot are visible. Similarly, when
1266- subplots have a shared y-axis along a row, only the y tick labels
1267- of the first column subplot are visible.
1265+ labels of the bottom subplot are created. Similarly, when subplots
1266+ have a shared y-axis along a row, only the y tick labels of the
1267+ first column subplot are created. To later turn other subplots'
1268+ ticklabels on, use :meth:`~matplotlib.axes.Axes.tick_params`.
12681269
1269- squeeze : bool, default: True
1270+ squeeze : bool, optional, default: True
12701271 - If True, extra dimensions are squeezed out from the returned
1271- axis object :
1272+ array of Axes :
12721273
12731274 - if only one subplot is constructed (nrows=ncols=1), the
12741275 resulting single Axes object is returned as a scalar.
1275- - for Nx1 or 1xN subplots, the returned object is a 1D numpy
1276- object array of Axes objects are returned as numpy 1D
1277- arrays.
1278- - for NxM, subplots with N>1 and M>1 are returned as a 2D
1279- arrays.
1276+ - for Nx1 or 1xM subplots, the returned object is a 1D numpy
1277+ object array of Axes objects.
1278+ - for NxM, subplots with N>1 and M>1 are returned
1279+ as a 2D array.
12801280
12811281 - If False, no squeezing at all is done: the returned Axes object
12821282 is always a 2D array containing Axes instances, even if it ends
0 commit comments