python 画双坐标轴
时间: 2023-08-27 10:19:39 浏览: 79
你可以使用 Matplotlib 库来画双坐标轴。下面是一个示例代码:
```python
import matplotlib.pyplot as plt
# 创建一个图形对象和两个子图
fig, ax1 = plt.subplots()
# 创建第一个坐标轴
ax1.set_xlabel('X轴')
ax1.set_ylabel('Y1轴')
ax1.plot(x, y1, color='red', label='Y1')
ax1.tick_params(axis='y', labelcolor='red')
# 创建第二个坐标轴
ax2 = ax1.twinx()
ax2.set_ylabel('Y2轴')
ax2.plot(x, y2, color='blue', label='Y2')
ax2.tick_params(axis='y', labelcolor='blue')
# 添加图例
lines, labels = ax1.get_legend_handles_labels()
lines2, labels2 = ax2.get_legend_handles_labels()
ax2.legend(lines + lines2, labels + labels2, loc='upper right')
plt.show()
```
在上面的示例中,`ax1` 是第一个坐标轴,`ax2` 是第二个坐标轴。你可以使用 `plot` 函数来绘制数据,然后使用 `set_xlabel`、`set_ylabel` 设置坐标轴的标签。使用 `tick_params` 可以设置坐标轴的颜色。最后,使用 `legend` 函数添加图例。
请注意,你需要替换示例代码中的 `x`、`y1` 和 `y2` 为你自己的数据。
阅读全文