You are reading an old version of the documentation (v2.2.3). For the latest version see https://matplotlib.org/stable/gallery/subplots_axes_and_figures/invert_axes.html
Version 2.2.3
matplotlib
Fork me on GitHub

Related Topics

Invert AxesΒΆ

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

../../_images/sphx_glr_invert_axes_001.png
import matplotlib.pyplot as plt
import numpy as np

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

plt.xlim(5, 0)  # decreasing time

plt.xlabel('decreasing time (s)')
plt.ylabel('voltage (mV)')
plt.title('Should be growing...')
plt.grid(True)

plt.show()

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery