메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
축 반전 #
축 제한의 일반 순서를 뒤집어 축 감소를 사용할 수 있습니다.
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()