@@ -1052,12 +1052,12 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
10521052
10531053 sharex : {"none", "all", "row", "col"} or bool, default: False
10541054 - If True, the x-axis will be shared amongst all subplots.
1055- - If False, no axis will be shared amongst subplots.
1055+ - If False, no x- axis will be shared amongst subplots.
10561056 - If a string must be one of "row", "col", "all", or "none".
10571057 - "all" has the same effect as True.
10581058 - "none" has the same effect as False.
1059- - If "row", each subplot row will share a x-axis.
1060- - If "col", each subplot column will share a x-axis.
1059+ - If "row", each subplot row will share an x-axis.
1060+ - If "col", each subplot column will share an x-axis.
10611061
10621062 Note that if the x-axis is shared across rows (sharex=True or
10631063 sharex="col"), then the x tick labels will only be display on subplots
@@ -1070,24 +1070,24 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
10701070 - "all" has the same effect as True.
10711071 - "none" has the same effect as False.
10721072 - If "row", each subplot row will share a y-axis.
1073- - If "col", each subplot column will share a y-axis
1073+ - If "col", each subplot column will share an y-axis
10741074
1075- Note that if the y-axis is shared across columns (sharey=False or
1076- sharey="col"), 1 then the y tick labels will only be displayed on
1075+ Note that if the y-axis is shared across columns (sharey=True or
1076+ sharey="col"), then the y tick labels will only be displayed on
10771077 subplots of the first column.
10781078
10791079 squeeze : bool, optional, default: True
1080- - If True, extra dimensions are squeezed out from the returned axis
1080+ - If True, extra dimensions are squeezed out from the returned Axes
10811081 object:
10821082
10831083 - if only one subplot is constructed (nrows=ncols=1), the
1084- resulting single Axis object is returned as a scalar.
1085- - for Nx1 or 1xN subplots, the returned object is a 1-d numpy
1086- object array of Axis objects are returned as numpy 1-d arrays.
1087- - for NxM subplots with N>1 and M>1 are returned as a 2d arrays.
1084+ resulting single Axes object is returned as a scalar.
1085+ - for Nx1 or 1xN subplots, the returned object is a 1D numpy
1086+ object array of Axes objects are returned as numpy 1D arrays.
1087+ - for NxM, subplots with N>1 and M>1 are returned as a 2D arrays.
10881088
1089- - If False, no squeezing at all is done: the returned axis object is
1090- always a 2-d array containing Axis instances, even if it ends up
1089+ - If False, no squeezing at all is done: the returned Axes object is
1090+ always a 2D array containing Axes instances, even if it ends up
10911091 being 1x1.
10921092
10931093 subplot_kw : dict, optional
0 commit comments