在具有不同刻度的 Matplotlib 中有多个轴
在以下代码中,我们将了解如何创建共享 Y 轴。
步骤
使用子图方法创建 fig 和 ax 变量,其中默认 nrows 和 ncols 为 1。
使用 plot() 方法中传递的参数列表绘制线,color="red”。
创建具有共享 X 轴但独立 Y 轴的 Axes 孪生。
绘制在步骤 3 中创建的 ax2 上的线。
调整子图之间以及子图周围的填充。
要显示图形,请使用 plt.show() 方法。
示例
import matplotlib.pyplot as plt fig, ax1 = plt.subplots() ax1.plot([1, 2, 3, 4, 5], [3, 5, 7, 1, 9], color='red') ax2 = ax1.twinx() ax2.plot([11, 12, 31, 41, 15], [13, 51, 17, 11, 76], color='blue') fig.tight_layout() plt.show()
输出
广告