@@ -3074,8 +3074,8 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False,
3074
3074
The left xlim (default: None, which leaves the left limit
3075
3075
unchanged).
3076
3076
The left and right xlims may be passed as the tuple
3077
- (` left`, ` right` ) as the first positional argument (or as
3078
- the ` left` keyword argument).
3077
+ (* left*, * right* ) as the first positional argument (or as
3078
+ the * left* keyword argument).
3079
3079
3080
3080
right : scalar, optional
3081
3081
The right xlim (default: None, which leaves the right limit
@@ -3091,17 +3091,17 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False,
3091
3091
xmin, xmax : scalar, optional
3092
3092
These arguments are deprecated and will be removed in a future
3093
3093
version. They are equivalent to left and right respectively,
3094
- and it is an error to pass both ` xmin` and ` left` or
3095
- ` xmax` and ` right` .
3094
+ and it is an error to pass both * xmin* and * left* or
3095
+ * xmax* and * right* .
3096
3096
3097
3097
Returns
3098
3098
-------
3099
3099
xlimits : tuple
3100
- Returns the new x-axis limits as (` left`, ` right` ).
3100
+ Returns the new x-axis limits as (* left*, * right* ).
3101
3101
3102
3102
Notes
3103
3103
-----
3104
- The ` left` value may be greater than the ` right` value, in which
3104
+ The * left* value may be greater than the * right* value, in which
3105
3105
case the x-axis values will decrease from left to right.
3106
3106
3107
3107
Examples
@@ -3115,7 +3115,7 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False,
3115
3115
>>> set_xlim(right=right_lim)
3116
3116
3117
3117
Limits may be passed in reverse order to flip the direction of
3118
- the x-axis. For example, suppose `x` represents the number of
3118
+ the x-axis. For example, suppose *x* represents the number of
3119
3119
years before present. The x-axis limits might be set like the
3120
3120
following so 5000 years ago is on the left of the plot and the
3121
3121
present is on the right.
@@ -3408,15 +3408,15 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False,
3408
3408
The bottom ylim (default: None, which leaves the bottom
3409
3409
limit unchanged).
3410
3410
The bottom and top ylims may be passed as the tuple
3411
- (` bottom`, ` top` ) as the first positional argument (or as
3412
- the ` bottom` keyword argument).
3411
+ (* bottom*, * top* ) as the first positional argument (or as
3412
+ the * bottom* keyword argument).
3413
3413
3414
3414
top : scalar, optional
3415
3415
The top ylim (default: None, which leaves the top limit
3416
3416
unchanged).
3417
3417
3418
3418
emit : bool, optional
3419
- Whether to notify observers of limit change (default: True).
3419
+ Whether to notify observers of limit change (default: `` True`` ).
3420
3420
3421
3421
auto : bool or None, optional
3422
3422
Whether to turn on autoscaling of the y-axis. True turns on,
@@ -3425,17 +3425,17 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False,
3425
3425
ymin, ymax : scalar, optional
3426
3426
These arguments are deprecated and will be removed in a future
3427
3427
version. They are equivalent to bottom and top respectively,
3428
- and it is an error to pass both ` ymin` and ` bottom` or
3429
- ` ymax` and ` top` .
3428
+ and it is an error to pass both * ymin* and * bottom* or
3429
+ * ymax* and * top* .
3430
3430
3431
3431
Returns
3432
3432
-------
3433
3433
ylimits : tuple
3434
- Returns the new y-axis limits as (` bottom`, ` top` ).
3434
+ Returns the new y-axis limits as (* bottom*, * top* ).
3435
3435
3436
3436
Notes
3437
3437
-----
3438
- The ` bottom` value may be greater than the ` top` value, in which
3438
+ The * bottom* value may be greater than the * top* value, in which
3439
3439
case the y-axis values will decrease from bottom to top.
3440
3440
3441
3441
Examples
0 commit comments