Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b918016
DOC starting the migration to sphinx
NelleV Mar 8, 2017
b110b1f
DOC Set up sphinx-gallery in parallel of our own gallery
NelleV Mar 9, 2017
ba6d268
DOC added sphinx-gallery as a requirement
NelleV Mar 11, 2017
c908f98
DOC Added readme files to include examples in SG
NelleV Mar 11, 2017
c61c856
DOC SG doesn't support parallel builds yet
NelleV Mar 11, 2017
eaaf182
DOC lines, bars and markers is now full SG
NelleV Mar 11, 2017
4f92501
DOC examples/statistics is fully SG
NelleV Mar 11, 2017
40eab47
DOC pie and polar charts is now full SG
NelleV Mar 11, 2017
9738124
DOC subplots, axes and figures are now full SG
NelleV Mar 11, 2017
8f8d316
DOC added ticks and spines to sphinx-gallery
NelleV Mar 12, 2017
55a5840
DOC image, contours and fields are fully SG compatible
NelleV Mar 16, 2017
9bf91a8
DOC showcase are fully SG compatible
NelleV Mar 16, 2017
f50ab00
DOC text, labels and annotations are fully SG compatible
NelleV Mar 16, 2017
7c79b12
DOC tick and spines is now full SG compatible
NelleV Mar 16, 2017
1ed25aa
DOC shapes and collections is now fully SG compatible
NelleV Mar 17, 2017
8bc4597
DOC mplot3d is fully SG-compatible
NelleV Mar 19, 2017
d5583f8
DOC The gallery is now built with sphinx-gallery
NelleV Mar 19, 2017
8f5f185
DOC all plots in the gallery now produce images
NelleV Mar 19, 2017
9d805a1
DOC API is now fully SG-compatible
NelleV Mar 19, 2017
4a13444
DOC linking to auto_examples when possible
NelleV Mar 19, 2017
8b764e7
DOC FIX nitpicks in the conf file
NelleV Mar 25, 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 linking to auto_examples when possible
  • Loading branch information
NelleV committed Apr 6, 2017
commit 4a13444b2ce5f579e762264c4bb6bafe375e8921
2 changes: 1 addition & 1 deletion doc/users/prev_whats_new/whats_new_1.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Kevin Davies has extended Yannick Copin's original Sankey example into a module
(:ref:`api-plot_sankey_basics`, :ref:`api-plot_sankey_links`,
:ref:`api-plot_sankey_rankine`).

.. plot:: mpl_examples/api/plot_sankey_rankine.py
.. plot:: auto_examples/api/plot_sankey_rankine.py


Animation
Expand Down
2 changes: 1 addition & 1 deletion doc/users/prev_whats_new/whats_new_1.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ In addition to simply plotting the streamlines of the vector field,
line widths of the streamlines to a separate parameter, such as the speed or
local intensity of the vector field.

.. plot:: mpl_examples/images_contours_and_fields/plot_streamplot_features.py
.. plot:: auto_examples/images_contours_and_fields/plot_streamplot_features.py


New hist functionality
Expand Down
2 changes: 1 addition & 1 deletion doc/users/prev_whats_new/whats_new_1.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ matplotlib internals were cleaned up to support using such transforms in
:class:`~matplotlib.Axes`. This transform is important for some plot types,
specifically the Skew-T used in meteorology.

.. plot:: mpl_examples/api/plot_skewt.py
.. plot:: auto_examples/api/plot_skewt.py

Support for specifying properties of wedge and text in pie charts.
``````````````````````````````````````````````````````````````````
Expand Down
2 changes: 1 addition & 1 deletion doc/users/prev_whats_new/whats_new_1.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ kwargs names is not ideal, but `Axes.fill_between` already has a

This is particularly useful for plotting pre-binned histograms.

.. plot:: mpl_examples/api/plot_filled_step.py
.. plot:: auto_examples/api/plot_filled_step.py


Square Plot
Expand Down
10 changes: 5 additions & 5 deletions doc/users/screenshots.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Path demo
You can add arbitrary paths in matplotlib using the
:mod:`matplotlib.path` module:

.. plot:: mpl_examples/shapes_and_collections/plot_path_patch.py
.. plot:: auto_examples/shapes_and_collections/plot_path_patch.py

.. _screenshots_mplot3d_surface:

Expand Down Expand Up @@ -166,7 +166,7 @@ Fill demo
The :func:`~matplotlib.pyplot.fill` command lets you
plot filled curves and polygons:

.. plot:: mpl_examples/lines_bars_and_markers/plot_fill.py
.. plot:: auto_examples/lines_bars_and_markers/plot_fill.py

Thanks to Andrew Straw for adding this function.

Expand All @@ -178,7 +178,7 @@ Date demo
You can plot date data with major and minor ticks and custom tick formatters
for both.

.. plot:: mpl_examples/api/plot_date.py
.. plot:: auto_examples/api/plot_date.py

See :mod:`matplotlib.ticker` and :mod:`matplotlib.dates` for details and usage.

Expand Down Expand Up @@ -217,7 +217,7 @@ The :func:`~matplotlib.pyplot.legend` command automatically
generates figure legends, with MATLAB-compatible legend placement
commands.

.. plot:: mpl_examples/api/plot_legend.py
.. plot:: auto_examples/api/plot_legend.py

Thanks to Charles Twardy for input on the legend command.

Expand Down Expand Up @@ -278,4 +278,4 @@ XKCD-style sketch plots
matplotlib supports plotting in the style of `xkcd
<http://www.xkcd.com/>`.

.. plot:: mpl_examples/showcase/plot_xkcd.py
.. plot:: auto_examples/showcase/plot_xkcd.py
4 changes: 2 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def legend(self, *args, **kwargs):
Examples
--------

.. plot:: mpl_examples/api/plot_legend.py
.. plot:: auto_examples/api/plot_legend.py

"""
handlers = kwargs.get('handler_map', {}) or {}
Expand Down Expand Up @@ -3917,7 +3917,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,

Examples
--------
.. plot:: mpl_examples/shapes_and_collections/plot_scatter.py
.. plot:: auto_examples/shapes_and_collections/plot_scatter.py

"""

Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def make_compound_path_from_polys(cls, XY):
numsides x 2) numpy array of vertices. Return object is a
:class:`Path`

.. plot:: mpl_examples/api/plot_histogram_path.py
.. plot:: auto_examples/api/plot_histogram_path.py

"""

Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/sankey.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def __init__(self, ax=None, scale=1.0, unit='', format='%G', gap=0.25,

**Examples:**

.. plot:: mpl_examples/api/plot_sankey_basics.py
.. plot:: auto_examples/api/plot_sankey_basics.py
"""
# Check the arguments.
if gap < 0:
Expand Down