
.. DO NOT EDIT.
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
.. "gallery/subplots_axes_and_figures/invert_axes.py"
.. LINE NUMBERS ARE GIVEN BELOW.

.. only:: html

    .. meta::
        :keywords: codex

    .. note::
        :class: sphx-glr-download-link-note

        :ref:`Go to the end <sphx_glr_download_gallery_subplots_axes_and_figures_invert_axes.py>`
        to download the full example code

.. rst-class:: sphx-glr-example-title

.. _sphx_glr_gallery_subplots_axes_and_figures_invert_axes.py:


===========
Invert Axes
===========

You can use decreasing axes by flipping the normal order of the axis
limits

.. GENERATED FROM PYTHON SOURCE LINES 9-26

.. code-block:: Python


    import matplotlib.pyplot as plt
    import numpy as np

    t = np.arange(0.01, 5.0, 0.01)
    s = np.exp(-t)

    fig, ax = plt.subplots()

    ax.plot(t, s)
    ax.set_xlim(5, 0)  # decreasing time
    ax.set_xlabel('decreasing time (s)')
    ax.set_ylabel('voltage (mV)')
    ax.set_title('Should be growing...')
    ax.grid(True)

    plt.show()


.. _sphx_glr_download_gallery_subplots_axes_and_figures_invert_axes.py:

.. only:: html

  .. container:: sphx-glr-footer sphx-glr-footer-example

    .. container:: sphx-glr-download sphx-glr-download-jupyter

      :download:`Download Jupyter notebook: invert_axes.ipynb <invert_axes.ipynb>`

    .. container:: sphx-glr-download sphx-glr-download-python

      :download:`Download Python source code: invert_axes.py <invert_axes.py>`

    .. container:: sphx-glr-download sphx-glr-download-zip

      :download:`Download zipped: invert_axes.zip <invert_axes.zip>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io>`_
