y軸に、2種類のグラフを異なるスケールでプロットする。
matplotlib axes の twinx() を使う。
https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.twinx.html
例
import numpy as np
from matplotlib import pyplot as plt
x = np.linspace(-3, 3, num=100, endpoint=True)
y1 = np.sin(x)
y2 = np.exp(-x)
fig, ax = plt.subplots()
ax.plot(x,y1,'red',label='sin(x)')
ax2 = ax.twinx()
ax2.plot(x,y2,'blue',label='exp(x)')
ax.set_ylabel('sin')
ax2.set_ylabel('exp')
plt.show()