使用Matplotlib高亮显示多轴图形中的选定直线可以通过以下步骤实现:
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
# 绘制第一个轴的数据
ax.plot(x1, y1, label='轴1')
# 绘制第二个轴的数据
ax2 = ax.twinx()
ax2.plot(x2, y2, label='轴2')
# 绘制第三个轴的数据
ax3 = ax.twinx()
ax3.spines['right'].set_position(('outward', 60)) # 调整第三个轴的位置
ax3.plot(x3, y3, label='轴3')
# 在第一个轴上绘制选定的直线
ax.axhline(y=threshold, color='r', linestyle='--', label='选定直线')
# 在第二个轴上绘制选定的直线
ax2.axhline(y=threshold, color='g', linestyle='--', label='选定直线')
# 在第三个轴上绘制选定的直线
ax3.axhline(y=threshold, color='b', linestyle='--', label='选定直线')
# 添加图例
ax.legend(loc='upper left')
ax2.legend(loc='upper right')
ax3.legend(loc='lower right')
# 添加轴标签
ax.set_xlabel('X轴')
ax.set_ylabel('Y轴1')
ax2.set_ylabel('Y轴2')
ax3.set_ylabel('Y轴3')
plt.show()
这样就可以使用Matplotlib高亮显示多轴图形中的选定直线。请注意,以上代码仅为示例,实际使用时需要根据具体的数据和需求进行相应的修改。
领取专属 10元无门槛券
手把手带您无忧上云