awips2/pythonPackages/matplotlib/doc/users/plotting.rst
root e2ecdcfe33 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: a02aeb236c [formerly 9f19e3f712] [formerly a02aeb236c [formerly 9f19e3f712] [formerly 06a8b51d6d [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]]
Former-commit-id: 06a8b51d6d
Former-commit-id: 8e80217e59 [formerly 3360eb6c5f]
Former-commit-id: 377dcd10b9
2012-01-06 08:55:05 -06:00

155 lines
2.8 KiB
ReStructuredText
Executable file

.. _plotting-guide:
***************
Plotting guide
***************
An in-depth, tutorial style guide to the matplotlib plotting
functions, which explains the most important keyword arguments with
examples and figures.
.. _image-plots:
Images
======
:func:`~matplotlib.pyplot.imshow`
TODO; see :ref:`how-to-contribute-docs`.
.. _colormaps-plots:
Colormaps
==========
TODO; see :ref:`how-to-contribute-docs`.
.. _colorbars-plots:
Colorbars
==========
:func:`~matplotlib.pyplot.colorbar`
TODO; see :ref:`how-to-contribute-docs`.
.. _contour-plots:
Contouring
==========
:func:`~matplotlib.pyplot.contour`
TODO; see :ref:`how-to-contribute-docs`.
.. _scatter-plots:
Scatter plots
==============
:func:`~matplotlib.pyplot.scatter`
TODO; see :ref:`how-to-contribute-docs`.
.. _log-plots:
Log plots
==============
:func:`~matplotlib.pyplot.semilogx`, :func:`~matplotlib.pyplot.semilogy` and :func:`~matplotlib.pyplot.loglog`
.. _polar-plots:
Polar plots
==============
:func:`~matplotlib.pyplot.polar`
TODO; see :ref:`how-to-contribute-docs`.
.. _filled-plots:
Filled plots
==============
:func:`~matplotlib.pyplot.fill` and :mod:`~matplotlib.patches`
TODO; see :ref:`how-to-contribute-docs`.
.. _bar-plots:
Bar charts, histograms and errorbars
======================================
:func:`~matplotlib.pyplot.bar`, :func:`~matplotlib.pyplot.barh`,
:func:`~matplotlib.pyplot.errorbar` and
:func:`~matplotlib.pyplot.hist`
TODO; see :ref:`how-to-contribute-docs`.
.. _time-series-plots:
Timeseries plots
==========================
:func:`~matplotlib.pyplot.acorr`, :func:`~matplotlib.pyplot.xcorr`, :func:`~matplotlib.pyplot.psd`, :func:`~matplotlib.pyplot.csd`,
:func:`~matplotlib.pyplot.cohere`, :func:`~matplotlib.pyplot.specgram`
and the windowing and detrending functions in :mod:`matplotlib.mlab`.
TODO; see :ref:`how-to-contribute-docs`.
.. _sparsity-plots:
Sparsity plots
==========================
:func:`~matplotlib.pyplot.spy`
TODO; see :ref:`how-to-contribute-docs`.
.. _boxplots-plots:
Boxplots
==========================
:func:`~matplotlib.pyplot.boxplot`
TODO; see :ref:`how-to-contribute-docs`.
.. _date-plots:
Working with dates
==========================
TODO; see :ref:`how-to-contribute-docs`.
.. _masked-data-plots:
Working with masked/missing data
==================================
TODO; see :ref:`how-to-contribute-docs`.
.. _collections-plots:
Working with collections
==================================
TODO; see :ref:`how-to-contribute-docs`.
.. _legend-plots:
Creating figure and axes legends
==================================
:func:`~matplotlib.pyplot.legend` and :func:`~matplotlib.pyplot.figlegend`
:ref:`plotting-guide-legend`
Annotating plot
===============
:func:`~matplotlib.pyplot.text` and :func:`~matplotlib.pyplot.annotate`
:ref:`plotting-guide-annotation`