如何在 Matplotlib 中绘制具有两个 Y 轴(两个单位)的单个数据?

matplotlibpythondata visualization

要在 Matplotlib 中绘制具有两个 Y 轴(两个单位)的单个数据,我们可以采取以下步骤 −

  • 设置图形大小并调整子图之间和周围的填充。
  • 使用 numpy 创建 速度加速度 数据点。
  • 向当前图形添加子图。
  • 使用 plot() 方法绘制速度数据点。
  • 创建共享 X 轴的双轴。
  • 使用 plot() 方法绘制加速度数据点。
  • 在图形上放置图例。
  • 要显示图形,请使用 show()方法。

示例

import matplotlib.pyplot as plt
import numpy as np

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

speed = np.array([3, 1, 2, 0, 5])
acceleration = np.array([6, 5, 7, 1, 5])

ax1 = plt.subplot()
l1, = ax1.plot(speed, color='red')
ax2 = ax1.twinx()
l2, = ax2.plot(acceleration, color='orange')

plt.legend([l1, l2], ["speed", "acceleration"])

plt.show()

输出


相关文章