You are reading an old version of the documentation (v3.0.0). For the latest version see https://matplotlib.org/stable/gallery/scales/log_test.html
Version 3.0.0
matplotlib
Fork me on GitHub

Related Topics

Log AxisΒΆ

This is an example of assigning a log-scale for the x-axis using semilogx.

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

fig, ax = plt.subplots()

dt = 0.01
t = np.arange(dt, 20.0, dt)

ax.semilogx(t, np.exp(-t / 5.0))
ax.grid()

plt.show()

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