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 lines, bars and markers is now full SG
  • Loading branch information
NelleV committed Apr 6, 2017
commit eaaf1829e8e23bab8dbac03b14f59412f5886974
2 changes: 1 addition & 1 deletion doc/users/legend_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ Known examples of using legend
Here is a non-exhaustive list of the examples available involving legend
being used in various ways:

* :ref:`lines_bars_and_markers-scatter_with_legend`
* :ref:`api-plot_legend`
* :ref:`lines_bars_and_markers-plot_scatter_with_legend`
* :ref:`pylab_examples-contourf_hatching`
* :ref:`pylab_examples-figlegend_demo`
* :ref:`pylab_examples-scatter_symbol`
4 changes: 2 additions & 2 deletions doc/users/screenshots.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ command, which includes customizations such as error bars:
It's also simple to create stacked bars
(`bar_stacked.py <../examples/pylab_examples/bar_stacked.html>`_),
or horizontal bar charts
(`barh_demo.py <../examples/lines_bars_and_markers/barh_demo.html>`_).
(`plot_barh.py <../examples/lines_bars_and_markers/plot_barh.html>`_).

.. _screenshots_pie_demo:

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/fill_demo.py
.. plot:: mpl_examples/lines_bars_and_markers/plot_fill.py

Thanks to Andrew Straw for adding this function.

Expand Down
2 changes: 1 addition & 1 deletion doc/users/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Filled ``+`` and ``x`` markers

New fillable *plus* and *x* markers have been added. See
the :mod:`~matplotlib.markers` module and
:ref:`marker reference <lines_bars_and_markers-marker_reference>`
:ref:`marker reference <lines_bars_and_markers-plot_marker_reference>`
examples.

`rcount` and `ccount` for `plot_surface()`
Expand Down
12 changes: 6 additions & 6 deletions examples/tests/backend_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@
files = dict()

files['lines'] = [
'barh_demo.py',
'cohere_demo.py',
'fill_demo.py',
'plot_barh.py',
'plot_cohere.py',
'plot_fill.py',
'fill_demo_features.py',
'line_demo_dash_control.py',
'line_styles_reference.py',
'scatter_with_legend.py'
'plot_line_demo_dash_control.py',
'plot_line_styles_reference.py',
'plot_scatter_with_legend.py'
]

files['shapes'] = [
Expand Down
4 changes: 2 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4699,7 +4699,7 @@ def fill(self, *args, **kwargs):

Examples
--------
.. plot:: mpl_examples/lines_bars_and_markers/fill_demo.py
.. plot:: auto_examples/lines_bars_and_markers/plot_fill.py


"""
Expand Down Expand Up @@ -7067,7 +7067,7 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,

Examples
--------
.. plot:: mpl_examples/lines_bars_and_markers/cohere_demo.py
.. plot:: auto_examples/lines_bars_and_markers/plot_cohere.py
"""
if not self._hold:
self.cla()
Expand Down