Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4f92501

Browse files
committed
DOC examples/statistics is fully SG
1 parent eaaf182 commit 4f92501

22 files changed

Lines changed: 68 additions & 55 deletions

doc/users/prev_whats_new/whats_new_1.4.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ with :func:`~matplotlib.Axes.bxp`.
8282
Lastly, each artist (e.g., the box, outliers, cap, notches) can now be
8383
toggled on or off and their styles can be passed in through individual
8484
kwargs. See the examples:
85-
:ref:`statistics-boxplot_demo` and
86-
:ref:`statistics-bxp_demo`
85+
:ref:`statistics-plot_boxplot` and
86+
:ref:`statistics-plot_bxp`
8787

8888
Added a bool kwarg, :code:`manage_xticks`, which if False disables the management
8989
of the ticks and limits on the x-axis by :func:`~matplotlib.axes.Axes.bxp`.

doc/users/screenshots.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Histograms
3232
The :func:`~matplotlib.pyplot.hist` command automatically generates
3333
histograms and returns the bin counts or probabilities:
3434

35-
.. plot:: mpl_examples/statistics/histogram_demo_features.py
35+
.. plot:: auto_examples/statistics/plot_histogram_features.py
3636

3737

3838
.. _screenshots_path_demo:

examples/README

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
Matplotlib examples
2+
===================
3+
4+
There are a variety of ways to use Matplotlib, and most of them are
5+
illustrated in the examples in this directory.
6+
7+
Probably the most common way people use Matplotlib is with the
8+
procedural interface, which follows the MATLAB/IDL/Mathematica approach
9+
of using simple procedures like "plot" or "title" to modify the current
10+
figure. These examples are included in the "pylab_examples" directory.
11+
If you want to write more robust scripts, e.g., for production use or in
12+
a web application server, you will probably want to use the Matplotlib
13+
API for full control. These examples are found in the "api" directory.
14+
Below is a brief description of the different directories found here:
15+
16+
* animation - Dynamic plots, see the documentation at
17+
http://matplotlib.org/api/animation_api.html
18+
19+
* api - working with the Matplotlib API directly.
20+
21+
* axes_grid1 - Examples related to the axes_grid1 toolkit.
22+
23+
* axisartist - Examples related to the axisartist toolkit.
24+
25+
* event_handling - How to interact with your figure, mouse presses,
26+
key presses, object picking, etc.
27+
28+
* misc - Miscellaneous examples. Some demos for loading and working
29+
with record arrays.
30+
31+
* mplot3d - 3D examples.
32+
33+
* pylab_examples - The interface to Matplotlib similar to MATLAB.
34+
35+
* tests - Tests used by Matplotlib developers to check functionality.
36+
(These tests are still sometimes useful, but mostly developers should
37+
use the pytest tests which perform automatic image comparison.)
38+
39+
* units - Working with unit data and custom types in Matplotlib.
40+
41+
* user_interfaces - Using Matplotlib in a GUI application, e.g.,
42+
Tkinter, wxPython, PyGObject, PyQt widgets.
43+
44+
* widgets - Examples using interactive widgets.

examples/README.txt

Lines changed: 5 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,8 @@
1-
Matplotlib examples
2-
===================
1+
.. _gallery:
32

4-
There are a variety of ways to use Matplotlib, and most of them are
5-
illustrated in the examples in this directory.
3+
Gallery
4+
=======
65

7-
Probably the most common way people use Matplotlib is with the
8-
procedural interface, which follows the MATLAB/IDL/Mathematica approach
9-
of using simple procedures like "plot" or "title" to modify the current
10-
figure. These examples are included in the "pylab_examples" directory.
11-
If you want to write more robust scripts, e.g., for production use or in
12-
a web application server, you will probably want to use the Matplotlib
13-
API for full control. These examples are found in the "api" directory.
14-
Below is a brief description of the different directories found here:
6+
Click on any image to see full size image and source code.
157

16-
* animation - Dynamic plots, see the documentation at
17-
http://matplotlib.org/api/animation_api.html
18-
19-
* api - working with the Matplotlib API directly.
20-
21-
* axes_grid1 - Examples related to the axes_grid1 toolkit.
22-
23-
* axisartist - Examples related to the axisartist toolkit.
24-
25-
* event_handling - How to interact with your figure, mouse presses,
26-
key presses, object picking, etc.
27-
28-
* misc - Miscellaneous examples. Some demos for loading and working
29-
with record arrays.
30-
31-
* mplot3d - 3D examples.
32-
33-
* pylab_examples - The interface to Matplotlib similar to MATLAB.
34-
35-
* tests - Tests used by Matplotlib developers to check functionality.
36-
(These tests are still sometimes useful, but mostly developers should
37-
use the pytest tests which perform automatic image comparison.)
38-
39-
* units - Working with unit data and custom types in Matplotlib.
40-
41-
* user_interfaces - Using Matplotlib in a GUI application, e.g.,
42-
Tkinter, wxPython, PyGObject, PyQt widgets.
43-
44-
* widgets - Examples using interactive widgets.
8+
.. contents::

examples/statistics/README.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.. _statistics_examples:
2+
3+
Statistics
4+
==========
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)