|
25 | 25 | Modules include: |
26 | 26 |
|
27 | 27 | :mod:`matplotlib.axes` |
28 | | - defines the `~matplotlib.axes.Axes` class. Most pyplot functions are |
29 | | - wrappers for `~matplotlib.axes.Axes` methods. The axes module is the |
30 | | - highest level of OO access to the library. |
| 28 | + The `~.axes.Axes` class. Most pyplot functions are wrappers for |
| 29 | + `~.axes.Axes` methods. The axes module is the highest level of OO |
| 30 | + access to the library. |
31 | 31 |
|
32 | 32 | :mod:`matplotlib.figure` |
33 | | - defines the :class:`~matplotlib.figure.Figure` class. |
| 33 | + The `.Figure` class. |
34 | 34 |
|
35 | 35 | :mod:`matplotlib.artist` |
36 | | - defines the :class:`~matplotlib.artist.Artist` base class for |
37 | | - all classes that draw things. |
| 36 | + The `.Artist` base class for all classes that draw things. |
38 | 37 |
|
39 | 38 | :mod:`matplotlib.lines` |
40 | | - defines the :class:`~matplotlib.lines.Line2D` class for |
41 | | - drawing lines and markers |
| 39 | + The `.Line2D` class for drawing lines and markers. |
42 | 40 |
|
43 | 41 | :mod:`matplotlib.patches` |
44 | | - defines classes for drawing polygons |
| 42 | + Classes for drawing polygons. |
45 | 43 |
|
46 | 44 | :mod:`matplotlib.text` |
47 | | - defines the :class:`~matplotlib.text.Text` and |
48 | | - :class:`~matplotlib.text.Annotate` classes |
| 45 | + The `.Text` and `.Annotation` classes. |
49 | 46 |
|
50 | 47 | :mod:`matplotlib.image` |
51 | | - defines the :class:`~matplotlib.image.AxesImage` and |
52 | | - :class:`~matplotlib.image.FigureImage` classes |
| 48 | + The `.AxesImage` and `.FigureImage` classes. |
53 | 49 |
|
54 | 50 | :mod:`matplotlib.collections` |
55 | | - classes for efficient drawing of groups of lines or polygons |
| 51 | + Classes for efficient drawing of groups of lines or polygons. |
56 | 52 |
|
57 | 53 | :mod:`matplotlib.colors` |
58 | | - classes for interpreting color specifications and for making |
59 | | - colormaps |
| 54 | + Color specifications and making colormaps. |
60 | 55 |
|
61 | 56 | :mod:`matplotlib.cm` |
62 | | - colormaps and the :class:`~matplotlib.image.ScalarMappable` |
63 | | - mixin class for providing color mapping functionality to other |
64 | | - classes |
| 57 | + Colormaps, and the `.ScalarMappable` mixin class for providing color |
| 58 | + mapping functionality to other classes. |
65 | 59 |
|
66 | 60 | :mod:`matplotlib.ticker` |
67 | | - classes for calculating tick mark locations and for formatting |
68 | | - tick labels |
| 61 | + Calculation of tick mark locations and formatting of tick labels. |
69 | 62 |
|
70 | 63 | :mod:`matplotlib.backends` |
71 | | - a subpackage with modules for various gui libraries and output |
72 | | - formats |
| 64 | + A subpackage with modules for various GUI libraries and output formats. |
73 | 65 |
|
74 | 66 | The base matplotlib namespace includes: |
75 | 67 |
|
76 | | - :data:`~matplotlib.rcParams` |
77 | | - a global dictionary of default configuration settings. It is |
78 | | - initialized by code which may be overridden by a matplotlibrc |
79 | | - file. |
| 68 | + `~matplotlib.rcParams` |
| 69 | + Default configuration settings; their defaults may be overridden using |
| 70 | + a :file:`matplotlibrc` file. |
80 | 71 |
|
81 | | - :func:`~matplotlib.rc` |
82 | | - a function for setting groups of rcParams values |
| 72 | + `~matplotlib.use` |
| 73 | + Setting the Matplotlib backend. This should be called before any |
| 74 | + figure is created, because it is not possible to switch between |
| 75 | + different GUI backends after that. |
83 | 76 |
|
84 | | - :func:`~matplotlib.use` |
85 | | - a function for setting the matplotlib backend. If used, this |
86 | | - function must be called immediately after importing matplotlib |
87 | | - for the first time. In particular, it must be called |
88 | | - **before** importing pyplot (if pyplot is imported). |
89 | | -
|
90 | | -matplotlib was initially written by John D. Hunter (1968-2012) and is now |
| 77 | +Matplotlib was initially written by John D. Hunter (1968-2012) and is now |
91 | 78 | developed and maintained by a host of others. |
92 | 79 |
|
93 | 80 | Occasionally the internal documentation (python docstrings) will refer |
|
0 commit comments