Matplotlib - 双坐标轴
在图形中使用双 x 或 y 坐标轴被认为是有用的。 此外,当一起绘制具有不同单位的曲线时。 Matplotlib 通过 twinx 和 twiny 函数支持此功能。
在下面的示例中,绘图具有双 y 坐标轴,一个显示 exp(x),另一个显示 log(x) −
import matplotlib.pyplot as plt import numpy as np fig = plt.figure() a1 = fig.add_axes([0,0,1,1]) x = np.arange(1,11) a1.plot(x,np.exp(x)) a1.set_ylabel('exp') a2 = a1.twinx() a2.plot(x, np.log(x),'ro-') a2.set_ylabel('log') fig.legend(labels = ('exp','log'),loc='upper left') plt.show()