目次
概要
x 軸、y 軸を反転させる方法について解説します。
関数一覧
- axes.Axes.invert_xaxis: x 軸を反転させる。
- axes.Axes.xaxis_inverted: x 軸が反転しているかどうかを取得する。
- axes.Axes.invert_yaxis: y 軸を反転させる。
- axes.Axes.yaxis_inverted: y 軸が反転しているかどうかを取得する。
x 軸を反転させる
In [1]:
import numpy as np
from matplotlib import pyplot as plt
x = np.linspace(-5, 5, 100)
y = np.exp(x)
fig, ax = plt.subplots()
ax.invert_xaxis()
ax.plot(x, y)
ax.grid()
plt.show()
y 軸を反転させる
In [2]:
x = np.linspace(-5, 5, 100)
y = np.exp(x)
fig, ax = plt.subplots()
ax.invert_yaxis()
ax.plot(x, y)
ax.grid()
plt.show()
コメント