対数軸#

これは、 を使用して x 軸に対数スケールを割り当てる例です semilogx

semilogx デモ
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()

Sphinx-Gallery によって生成されたギャラリー