@@ -1258,12 +1258,12 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
1258
1258
*orientation* parameter).
1259
1259
1260
1260
orientation : {'horizontal', 'vertical'}, optional
1261
- Controls the direction of the event collections:
1261
+ The direction of the event collections:
1262
1262
1263
- - 'horizontal' : the lines are arranged horizontally in rows,
1264
- and are vertical.
1265
- - 'vertical' : the lines are arranged vertically in columns,
1266
- and are horizontal.
1263
+ - 'horizontal': the lines are arranged horizontally in rows,
1264
+ and are vertical.
1265
+ - 'vertical': the lines are arranged vertically in columns,
1266
+ and are horizontal.
1267
1267
1268
1268
lineoffsets : scalar or sequence of scalars, optional, default: 1
1269
1269
The offset of the center of the lines from the origin, in the
@@ -2910,7 +2910,7 @@ def pie(self, x, explode=None, labels=None, colors=None,
2910
2910
textprops : dict, optional, default: None
2911
2911
Dict of arguments to pass to the text objects.
2912
2912
2913
- center : list of float, optional, default: (0, 0)
2913
+ center : list of float, optional, default: (0, 0)
2914
2914
Center position of the chart. Takes value (0, 0) or is a sequence
2915
2915
of 2 scalars.
2916
2916
@@ -3492,7 +3492,7 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3492
3492
x : Array or a sequence of vectors.
3493
3493
The input data.
3494
3494
3495
- notch : bool, optional ( False)
3495
+ notch : bool, optional, default: False
3496
3496
If `True`, will produce a notched box plot. Otherwise, a
3497
3497
rectangular boxplot is produced. The notches represent the
3498
3498
confidence interval (CI) around the median. See the entry
@@ -3514,9 +3514,9 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3514
3514
fliers default to 'b+' If you want more control use the
3515
3515
flierprops kwarg.
3516
3516
3517
- vert : bool, optional ( True)
3518
- If `True` (default), makes the boxes vertical. If `False`,
3519
- everything is drawn horizontally .
3517
+ vert : bool, optional, default: True
3518
+ If `True`, draws vertical boxes.
3519
+ If `False`, draw horizontal boxes .
3520
3520
3521
3521
whis : float or (float, float) (default = 1.5)
3522
3522
The position of the whiskers.
@@ -3576,55 +3576,55 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3576
3576
sequence. The default is 0.5, or ``0.15*(distance between
3577
3577
extreme positions)``, if that is smaller.
3578
3578
3579
- patch_artist : bool, optional ( False)
3579
+ patch_artist : bool, optional, default: False
3580
3580
If `False` produces boxes with the Line2D artist. Otherwise,
3581
3581
boxes and drawn with Patch artists.
3582
3582
3583
3583
labels : sequence, optional
3584
3584
Labels for each dataset. Length must be compatible with
3585
3585
dimensions of ``x``.
3586
3586
3587
- manage_ticks : bool, optional ( True)
3587
+ manage_ticks : bool, optional, default: True
3588
3588
If True, the tick locations and labels will be adjusted to match
3589
3589
the boxplot positions.
3590
3590
3591
- autorange : bool, optional ( False)
3591
+ autorange : bool, optional, default: False
3592
3592
When `True` and the data are distributed such that the 25th and
3593
3593
75th percentiles are equal, ``whis`` is set to (0, 100) such
3594
3594
that the whisker ends are at the minimum and maximum of the data.
3595
3595
3596
- meanline : bool, optional ( False)
3596
+ meanline : bool, optional, default: False
3597
3597
If `True` (and ``showmeans`` is `True`), will try to render
3598
3598
the mean as a line spanning the full width of the box
3599
3599
according to ``meanprops`` (see below). Not recommended if
3600
3600
``shownotches`` is also True. Otherwise, means will be shown
3601
3601
as points.
3602
3602
3603
- zorder : scalar, optional ( None)
3603
+ zorder : scalar, optional, default: None
3604
3604
Sets the zorder of the boxplot.
3605
3605
3606
3606
Other Parameters
3607
3607
----------------
3608
- showcaps : bool, optional ( True)
3608
+ showcaps : bool, optional, default: True
3609
3609
Show the caps on the ends of whiskers.
3610
- showbox : bool, optional ( True)
3610
+ showbox : bool, optional, default: True
3611
3611
Show the central box.
3612
- showfliers : bool, optional ( True)
3612
+ showfliers : bool, optional, default: True
3613
3613
Show the outliers beyond the caps.
3614
- showmeans : bool, optional ( False)
3614
+ showmeans : bool, optional, default: False
3615
3615
Show the arithmetic means.
3616
- capprops : dict, optional ( None)
3617
- Specifies the style of the caps.
3618
- boxprops : dict, optional ( None)
3619
- Specifies the style of the box.
3620
- whiskerprops : dict, optional ( None)
3621
- Specifies the style of the whiskers.
3622
- flierprops : dict, optional ( None)
3623
- Specifies the style of the fliers.
3624
- medianprops : dict, optional ( None)
3625
- Specifies the style of the median.
3626
- meanprops : dict, optional ( None)
3627
- Specifies the style of the mean.
3616
+ capprops : dict, optional, default: None
3617
+ The style of the caps.
3618
+ boxprops : dict, optional, default: None
3619
+ The style of the box.
3620
+ whiskerprops : dict, optional, default: None
3621
+ The style of the whiskers.
3622
+ flierprops : dict, optional, default: None
3623
+ The style of the fliers.
3624
+ medianprops : dict, optional, default: None
3625
+ The style of the median.
3626
+ meanprops : dict, optional, default: None
3627
+ The style of the mean.
3628
3628
3629
3629
Returns
3630
3630
-------
@@ -5497,9 +5497,9 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
5497
5497
This parameter is ignored for RGB(A) data.
5498
5498
5499
5499
aspect : {'equal', 'auto'} or float, optional
5500
- Controls the aspect ratio of the axes. The aspect is of particular
5501
- relevance for images since it may distort the image, i.e. pixel
5502
- will not be square.
5500
+ The aspect ratio of the axes. This parameter is particularly
5501
+ relevant for images since it determines whether data pixels are
5502
+ square.
5503
5503
5504
5504
This parameter is a shortcut for explicitly calling
5505
5505
`.Axes.set_aspect`. See there for further details.
@@ -6504,7 +6504,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
6504
6504
Default is 'bar'
6505
6505
6506
6506
align : {'left', 'mid', 'right'}, optional
6507
- Controls how the histogram is plotted .
6507
+ The horizontal alignment of the histogram bars .
6508
6508
6509
6509
- 'left': bars are centered on the left bin edges.
6510
6510
- 'mid': bars are centered between the bin edges.
@@ -7682,11 +7682,10 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7682
7682
matrices and images.
7683
7683
If not given, :rc:`image.origin` is used, defaulting to 'upper'.
7684
7684
7685
-
7686
- aspect : {'equal', 'auto', None} or float, optional
7687
- Controls the aspect ratio of the axes. The aspect is of particular
7688
- relevance for images since it may distort the image, i.e. pixel
7689
- will not be square.
7685
+ aspect : {'equal', 'auto', None} or float, optional, default: 'equal'
7686
+ The aspect ratio of the axes. This parameter is particularly
7687
+ relevant for images since it determines whether data pixels are
7688
+ square.
7690
7689
7691
7690
This parameter is a shortcut for explicitly calling
7692
7691
`.Axes.set_aspect`. See there for further details.
@@ -7697,8 +7696,6 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7697
7696
non-square pixels.
7698
7697
- *None*: Use :rc:`image.aspect`.
7699
7698
7700
- Default: 'equal'
7701
-
7702
7699
Returns
7703
7700
-------
7704
7701
ret : `~matplotlib.image.AxesImage` or `.Line2D`
0 commit comments