Skip to content

Re-organize What's new page #9260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 49 commits into from
Oct 7, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
a1dc966
DOC: Correct review issues with what's new page.
QuLogic Oct 2, 2017
3809204
DOC: Add more plots to What's new page.
QuLogic Oct 2, 2017
7ef54d8
DOC: put in top-level sections
tacaswell Oct 2, 2017
3e67e1a
DOC: move polar plot whats new entry
tacaswell Oct 2, 2017
cbdb552
DOC: move js animation whats new
tacaswell Oct 2, 2017
e5784e3
DOC: move TransformedPatchPath docs
tacaswell Oct 2, 2017
10272f4
DOC: move checkbox widget docs
tacaswell Oct 2, 2017
92f211c
DOC: move animation ABC whats new
tacaswell Oct 2, 2017
1f41d33
DOC: move AnchoreSizeBar whats new
tacaswell Oct 2, 2017
e7b3fc7
DOC: move annotation whats new
tacaswell Oct 2, 2017
e5171ad
DOC: move mplot3d whats new
tacaswell Oct 2, 2017
109aaf7
DOC: move quiver/barbs whats new
tacaswell Oct 2, 2017
ec8b1d3
DOC: move hexbin whats new
tacaswell Oct 2, 2017
bfa2af3
DOC: move the legend whats new
tacaswell Oct 2, 2017
2947041
DOC: move figure clear what new
tacaswell Oct 2, 2017
48e2280
DOC: remove avconv whats new
tacaswell Oct 2, 2017
c9e5ccc
DOC: move non-finite axis limits whats new to api changes
tacaswell Oct 2, 2017
2773dae
DOC: move meta-data whats new
tacaswell Oct 2, 2017
0804809
DOC: move LogFormatterMathtext whats new
tacaswell Oct 2, 2017
4841e9c
DOC: move patch simplification whats new
tacaswell Oct 2, 2017
b0c71ca
DOC: move PercentFormatter whats new
tacaswell Oct 2, 2017
4570155
DOC: move quiverkey whats new
tacaswell Oct 2, 2017
f6331fb
DOC: move reproducible whats new
tacaswell Oct 2, 2017
9690898
DOC: move collection scatter flattening docs to api changes
tacaswell Oct 2, 2017
5fb27d1
DOC: move colorbare reversed whats new
tacaswell Oct 2, 2017
6652dc7
DOC: move setp whats new
tacaswell Oct 2, 2017
92a4835
DOC: move and expand streamplot whats new
tacaswell Oct 2, 2017
9adf3d9
DOC: move tick_params rotation whats new
tacaswell Oct 2, 2017
28afbf6
DOC: move shaded 3D bar whats new docs
tacaswell Oct 2, 2017
1b6326d
DOC: move autofmt_xdata whats new
tacaswell Oct 2, 2017
429f961
DOC: move subplot2grid whats new
tacaswell Oct 2, 2017
bf6f801
DOC: hove fill_betweenx whats new
tacaswell Oct 2, 2017
9731438
DOC: hove rcParams validation whats new
tacaswell Oct 2, 2017
f81ec16
DOC: move EngFormatter whats new
tacaswell Oct 2, 2017
266f0c0
DOC: remove temporary heading
tacaswell Oct 2, 2017
6f27317
DOC: document changing font cache to json
tacaswell Oct 2, 2017
88894a9
DOC: add stub sections
tacaswell Oct 2, 2017
3a58899
DOC: fix headline
tacaswell Oct 2, 2017
5a15e2a
DOC: fill in remaining whats new entries
tacaswell Oct 4, 2017
7b58314
DOC: Fix minor capitalization issues.
QuLogic Oct 5, 2017
6d89c85
DOC: respond to review comments
tacaswell Oct 6, 2017
8d40a84
DOC: remove all whats new 'Example' sub-headings
tacaswell Oct 6, 2017
b823496
DOC: remove api change entry for reverted change
tacaswell Oct 6, 2017
2ee903a
DOC: merge up and organize api changes
tacaswell Oct 7, 2017
d8454ad
DOC: tweak whats new a bit
tacaswell Oct 7, 2017
1214252
DOC: fix ghissue markup
tacaswell Oct 7, 2017
d4f2540
DOC: minor review comments
tacaswell Oct 7, 2017
182430d
DOC: minor edits
tacaswell Oct 7, 2017
2ba2bab
DOC: one last double backquote
tacaswell Oct 7, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DOC: minor edits
  • Loading branch information
tacaswell committed Oct 7, 2017
commit 182430d88d923322ce3aa2429f55ca128afcdaff
2 changes: 1 addition & 1 deletion doc/api/api_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ of of the ``process`` method, which is typically in the GUI event
loop. Most GUI frameworks simple print the traceback to the screen
and continue as there is not always a clear method of getting the
exception back to the user. However PyQt5 now exits the process when
it receives and un-handled python exception in the event loop. Thus,
it receives an un-handled python exception in the event loop. Thus,
:meth:`~matplotlib.cbook.CallbackRegistry.process` now suppresses and
prints tracebacks to stderr by default.

Expand Down
25 changes: 13 additions & 12 deletions doc/users/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ For example:
:include-source:
:align: center

data = {'apples':10, 'oranges':15, 'lemons':5, 'limes':20}
data = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20}
fig, ax = plt.subplots()
ax.bar(data.keys(), data.values(), color='lightgray')

Expand Down Expand Up @@ -111,12 +111,13 @@ negative values are simply used as labels, and the real radius is shifted by
the configured minimum. This release also allows negative radii to be used for
grids and ticks, which were previously silently ignored.

Radial ticks have been modified to be parallel to the circular grid line, and
angular ticks have been modified to be parallel to the grid line. It may also
be useful to rotate tick *labels* to match the boundary. Calling
``ax.tick_params(rotation='auto')`` will enable new behavior: radial tick
labels will be parallel to the circular grid line, and angular tick labels will
be perpendicular to the grid line (i.e., parallel to the outer boundary).
Radial ticks have been modified to be parallel to the circular grid
line, and angular ticks have been modified to be parallel to the grid
line. It may also be useful to rotate tick *labels* to match the
boundary. Calling ``ax.tick_params(rotation='auto')`` will enable the
new behavior: radial tick labels will be parallel to the circular grid
line, and angular tick labels will be perpendicular to the grid line
(i.e., parallel to the outer boundary).


``Figure`` class now has ``subplots`` method
Expand Down Expand Up @@ -176,7 +177,7 @@ the timestamp value in the PS and PDF outputs. See `source date epoch
<https://reproducible-builds.org/specs/source-date-epoch/>`__.

Alternatively, calling ``savefig`` with ``metadata={'creationDate': None}``
will omit the timestamp altogether.
will omit the timestamp altogether for the PDF backend.

The reproducibility of the output from the PS and PDF backends has so
far been tested using various plot elements but only default values of
Expand Down Expand Up @@ -420,8 +421,8 @@ keyword.
ax.xaxis.set_tick_params(which='both', rotation=90)


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just below "Shading can now be toggled etc" to be consistent with the style of other headings

Users can now toggle shading in 3D bar plots
--------------------------------------------
Shading in 3D bar plots
-----------------------

A new ``shade`` parameter has been added the 3D
`~mpl_toolkits.mplot3d.axes3d.Axes3D.bar` plotting method. The default behavior
Expand Down Expand Up @@ -509,8 +510,8 @@ the expected ``"3.14 V"`` (with the default behavior).
Extend ``MATPLOTLIBRC`` behavior
--------------------------------

The environmental variable can now specify the full file path or path
to find :file:`matplotlibrc` in.
The environmental variable can now specify the full file path or the
path to a directory containing a :file:`matplotlibrc` file.


``density`` kwarg to hist
Expand Down