@@ -12,20 +12,20 @@ revision, see the :ref:`github-stats`.
12
12
:maxdepth: 4
13
13
14
14
15
- Unit converters and subclasses
16
- ------------------------------
15
+ Unit converters recognize subclasses
16
+ ------------------------------------
17
17
Unit converters now also handle instances of subclasses of the class they have
18
18
been registered for.
19
19
20
- `~pyplot.imsave ` metadata and PIL options
21
- -----------------------------------------
22
- `~pyplot.imsave ` has gained support for the ``metadata `` and ``pil_kwargs ``
23
- parameters. These parameters behave similarly as for the `Figure.savefig() `
20
+ `~. pyplot.imsave ` accepts metadata and PIL options
21
+ --------------------------------------------------
22
+ `~. pyplot.imsave ` has gained support for the ``metadata `` and ``pil_kwargs ``
23
+ parameters. These parameters behave similarly as for the `. Figure.savefig() `
24
24
method.
25
25
26
26
`cbook.normalize_kwargs `
27
27
------------------------
28
- `cbook.normalize_kwargs ` now presents a convenient interface to normalize
28
+ `. cbook.normalize_kwargs ` now presents a convenient interface to normalize
29
29
artist properties (e.g., from "lw" to "linewidth"):
30
30
31
31
>>> cbook.normalize_kwargs({" lw" : 1 }, Line2D)
@@ -35,10 +35,12 @@ The first argument is the mapping to be normalized, and the second argument can
35
35
be an artist class or an artist instance (it can also be a mapping in a
36
36
specific format; see the function's docstring for details).
37
37
38
- `FontProperties ` and `os.PathLike `
39
- ----------------------------------
40
- The *fname * argument to `FontProperties ` can now be an `os.PathLike `\s
41
- e.g. ``FontProperties(fname=pathlib.Path("/path/to/font.ttf")) ``.
38
+ `.FontProperties ` accepts `os.PathLike `
39
+ ---------------------------------------
40
+ The *fname * argument to `.FontProperties ` can now be an `os.PathLike `,
41
+ e.g.
42
+
43
+ >>> FontProperties(fname = pathlib.Path(" /path/to/font.ttf" ))
42
44
43
45
Gouraud-shading alpha channel in PDF backend
44
46
--------------------------------------------
@@ -81,18 +83,19 @@ depending on font support (e.g., T and e, or the period after the W).
81
83
82
84
bar3d lightsource shading
83
85
-------------------------
84
- bar3d now supports lighting from different angles when the *shade * parameter is
85
- True, which can be configured using the ``lightsource `` parameter.
86
+ :meth: `~.Axes3D.bar3d ` now supports lighting from different angles when the *shade *
87
+ parameter is ``True ``, which can be configured using the ``lightsource ``
88
+ parameter.
86
89
87
90
Shifting errorbars
88
91
------------------
89
- Previously, `plt.errorbar() ` accepted a kwarg `errorevery ` such that the
90
- command `plt.errorbar(x, y, yerr, errorevery=6) ` would add error bars to
91
- datapoints `x[::6], y[::6] `.
92
+ Previously, `. plt.errorbar() ` accepted a kwarg `` errorevery ` ` such that the
93
+ command `` plt.errorbar(x, y, yerr, errorevery=6) ` ` would add error bars to
94
+ datapoints `` x[::6], y[::6] ` `.
92
95
93
- `errorbar() ` now also accepts a tuple for `errorevery ` such that
94
- `plt.errorbar(x, y, yerr, errorevery=(start, N)) ` adds error bars to points
95
- `x[start::N], y[start::N] `.
96
+ `.plt. errorbar() ` now also accepts a tuple for `errorevery ` such that
97
+ `` plt.errorbar(x, y, yerr, errorevery=(start, N)) ` ` adds error bars to points
98
+ `` x[start::N], y[start::N] ` `.
96
99
97
100
Improvements in Logit scale ticker and formatter
98
101
------------------------------------------------
@@ -109,8 +112,8 @@ for probabilities and the precision adapts to the scale.
109
112
110
113
rcParams for axes title location and color
111
114
------------------------------------------
112
- Two new rcParams have been added: `` axes.titlelocation ` ` denotes the default axes title
113
- alignment, and `` axes.titlecolor ` ` the default axes title color.
115
+ Two new rcParams have been added: :rc: ` axes.titlelocation ` denotes the default axes title
116
+ alignment, and :rc: ` axes.titlecolor ` the default axes title color.
114
117
115
118
Valid values for ``axes.titlelocation `` are: left, center, and right.
116
119
Valid values for ``axes.titlecolor `` are: auto or a color. Setting it to auto
0 commit comments