@@ -79,12 +79,10 @@ def plot_items(signal=None, ann_samp=None, ann_sym=None, fs=None,
79
79
also be set to 'all' for all channels. Major grids at 0.5mV, and minor
80
80
grids at 0.125mV. All channels to be plotted with grids must have
81
81
`sig_units` equal to 'uV', 'mV', or 'V'.
82
- sharex, sharey : bool or {'none', 'all', 'row', 'col'}, default: False
83
- Controls sharing of properties among x (`sharex`) or y (`sharey`) axes:
84
- True or 'all': x- or y-axis will be shared among all subplots.
85
- False or 'none': each subplot x- or y-axis will be independent.
86
- 'row': each subplot row will share an x- or y-axis.
87
- 'col': each subplot column will share an x- or y-axis.
82
+ sharex, sharey : bool, optional
83
+ Controls sharing of properties among x (`sharex`) or y (`sharey`) axes.
84
+ If True: x- or y-axis will be shared among all subplots.
85
+ If False, each subplot x- or y-axis will be independent.
88
86
figsize : tuple, optional
89
87
Tuple pair specifying the width, and height of the figure. It is the
90
88
'figsize' argument passed into matplotlib.pyplot's `figure` function.
@@ -217,12 +215,10 @@ def create_figure(n_subplots, sharex, sharey, figsize):
217
215
The number of subplots to generate.
218
216
figsize : tuple
219
217
The figure's width, height in inches.
220
- sharex, sharey : bool or {'none', 'all', 'row', 'col'}, default: False
221
- Controls sharing of properties among x (`sharex`) or y (`sharey`) axes:
222
- True or 'all': x- or y-axis will be shared among all subplots.
223
- False or 'none': each subplot x- or y-axis will be independent.
224
- 'row': each subplot row will share an x- or y-axis.
225
- 'col': each subplot column will share an x- or y-axis.
218
+ sharex, sharey : bool, optional
219
+ Controls sharing of properties among x (`sharex`) or y (`sharey`) axes.
220
+ If True: x- or y-axis will be shared among all subplots.
221
+ If False, each subplot x- or y-axis will be independent.
226
222
227
223
Returns
228
224
-------
0 commit comments