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

Skip to content

Commit f2daee4

Browse files
committed
added plotting template docs
svn path=/trunk/matplotlib/; revision=6253
1 parent 1958d03 commit f2daee4

1 file changed

Lines changed: 151 additions & 0 deletions

File tree

doc/users/plotting.rst

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
.. _plotting-guide:
2+
3+
***************
4+
Plotting guide
5+
***************
6+
7+
An in-depth, tutorial style guide to the matplotlib plotting
8+
functions, which explains the most important keyword arguments with
9+
examples and figures.
10+
11+
.. _image-plots:
12+
13+
Images
14+
======
15+
:func:`~matplotlib.pyplot.imshow`
16+
17+
TODO; see :ref:`how-to-contribute-docs`.
18+
19+
20+
.. _colormaps-plots:
21+
22+
Colormaps
23+
==========
24+
25+
26+
TODO; see :ref:`how-to-contribute-docs`.
27+
28+
.. _colorbars-plots:
29+
30+
Colorbars
31+
==========
32+
33+
:func:`~matplotlib.pyplot.colorbar`
34+
35+
TODO; see :ref:`how-to-contribute-docs`.
36+
37+
.. _contour-plots:
38+
39+
Contouring
40+
==========
41+
42+
:func:`~matplotlib.pyplot.contour`
43+
44+
TODO; see :ref:`how-to-contribute-docs`.
45+
46+
.. _scatter-plots:
47+
48+
Scatter plots
49+
==============
50+
51+
:func:`~matplotlib.pyplot.scatter`
52+
53+
TODO; see :ref:`how-to-contribute-docs`.
54+
55+
.. _log-plots:
56+
57+
Log plots
58+
==============
59+
60+
:func:`~matplotlib.pyplot.semilogx`, :func:`~matplotlib.pyplot.semilogy` and :func:`~matplotlib.pyplot.loglog`
61+
62+
.. _polar-plots:
63+
64+
Polar plots
65+
==============
66+
67+
:func:`~matplotlib.pyplot.polar`
68+
69+
TODO; see :ref:`how-to-contribute-docs`.
70+
71+
.. _filled-plots:
72+
73+
Filled plots
74+
==============
75+
76+
:func:`~matplotlib.pyplot.fill` and :mod:`~matplotlib.patches`
77+
78+
TODO; see :ref:`how-to-contribute-docs`.
79+
80+
.. _bar-plots:
81+
82+
Bar charts, histograms and errorbars
83+
======================================
84+
85+
:func:`~matplotlib.pyplot.bar`, :func:`~matplotlib.pyplot.barh`,
86+
:func:`~matplotlib.pyplot.errorbar` and
87+
:func:`~matplotlib.pyplot.hist`
88+
89+
TODO; see :ref:`how-to-contribute-docs`.
90+
91+
.. _time-series-plots:
92+
93+
Timeseries plots
94+
==========================
95+
96+
:func:`~matplotlib.pyplot.acorr`, :func:`~matplotlib.pyplot.xcorr`, :func:`~matplotlib.pyplot.psd`, :func:`~matplotlib.pyplot.csd`,
97+
:func:`~matplotlib.pyplot.cohere`, :func:`~matplotlib.pyplot.specgram`
98+
and the windowing and detrending functions in :mod:`matplotlib.mlab`.
99+
100+
TODO; see :ref:`how-to-contribute-docs`.
101+
102+
.. _sparsity-plots:
103+
104+
Sparsity plots
105+
==========================
106+
107+
:func:`~matplotlib.pyplot.spy`
108+
109+
TODO; see :ref:`how-to-contribute-docs`.
110+
111+
.. _boxplots-plots:
112+
113+
Boxplots
114+
==========================
115+
116+
:func:`~matplotlib.pyplot.boxplot`
117+
118+
TODO; see :ref:`how-to-contribute-docs`.
119+
120+
.. _date-plots:
121+
122+
Working with dates
123+
==========================
124+
125+
TODO; see :ref:`how-to-contribute-docs`.
126+
127+
.. _masked-data-plots:
128+
129+
Working with masked/missing data
130+
==================================
131+
132+
TODO; see :ref:`how-to-contribute-docs`.
133+
134+
.. _collections-plots:
135+
136+
Working with collections
137+
==================================
138+
139+
TODO; see :ref:`how-to-contribute-docs`.
140+
141+
.. _legend-plots:
142+
143+
Creating figure and axes legends
144+
==================================
145+
:func:`~matplotlib.pyplot.legend` and :func:`~matplotlib.pyplot.figlegend`
146+
147+
TODO; see :ref:`how-to-contribute-docs`.
148+
149+
150+
151+

0 commit comments

Comments
 (0)