@@ -50,7 +50,7 @@ For example:
50
50
:include-source:
51
51
:align: center
52
52
53
- data = {'apples':10, 'oranges':15, 'lemons':5, 'limes':20}
53
+ data = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20}
54
54
fig, ax = plt.subplots()
55
55
ax.bar(data.keys(), data.values(), color='lightgray')
56
56
@@ -111,12 +111,13 @@ negative values are simply used as labels, and the real radius is shifted by
111
111
the configured minimum. This release also allows negative radii to be used for
112
112
grids and ticks, which were previously silently ignored.
113
113
114
- Radial ticks have been modified to be parallel to the circular grid line, and
115
- angular ticks have been modified to be parallel to the grid line. It may also
116
- be useful to rotate tick *labels * to match the boundary. Calling
117
- ``ax.tick_params(rotation='auto') `` will enable new behavior: radial tick
118
- labels will be parallel to the circular grid line, and angular tick labels will
119
- be perpendicular to the grid line (i.e., parallel to the outer boundary).
114
+ Radial ticks have been modified to be parallel to the circular grid
115
+ line, and angular ticks have been modified to be parallel to the grid
116
+ line. It may also be useful to rotate tick *labels * to match the
117
+ boundary. Calling ``ax.tick_params(rotation='auto') `` will enable the
118
+ new behavior: radial tick labels will be parallel to the circular grid
119
+ line, and angular tick labels will be perpendicular to the grid line
120
+ (i.e., parallel to the outer boundary).
120
121
121
122
122
123
``Figure `` class now has ``subplots `` method
@@ -176,7 +177,7 @@ the timestamp value in the PS and PDF outputs. See `source date epoch
176
177
<https://reproducible-builds.org/specs/source-date-epoch/> `__.
177
178
178
179
Alternatively, calling ``savefig `` with ``metadata={'creationDate': None} ``
179
- will omit the timestamp altogether.
180
+ will omit the timestamp altogether for the PDF backend .
180
181
181
182
The reproducibility of the output from the PS and PDF backends has so
182
183
far been tested using various plot elements but only default values of
@@ -420,8 +421,8 @@ keyword.
420
421
ax.xaxis.set_tick_params(which='both', rotation=90)
421
422
422
423
423
- Users can now toggle shading in 3D bar plots
424
- --------------------------------------------
424
+ Shading in 3D bar plots
425
+ -----------------------
425
426
426
427
A new ``shade `` parameter has been added the 3D
427
428
`~mpl_toolkits.mplot3d.axes3d.Axes3D.bar ` plotting method. The default behavior
@@ -509,8 +510,8 @@ the expected ``"3.14 V"`` (with the default behavior).
509
510
Extend ``MATPLOTLIBRC `` behavior
510
511
--------------------------------
511
512
512
- The environmental variable can now specify the full file path or path
513
- to find :file: `matplotlibrc ` in .
513
+ The environmental variable can now specify the full file path or the
514
+ path to a directory containing a :file: `matplotlibrc ` file .
514
515
515
516
516
517
``density `` kwarg to hist
0 commit comments