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