gpt4 book ai didi

python - 在图表外创建图例

转载 作者:行者123 更新时间:2023-12-05 07:43:17 24 4
gpt4 key购买 nike

<分区>

在我的一张图表中,我使用了辅助轴。我的代码创建了两个不同的图例并在我的图表中显示图例。这是我的代码:

fig3 = plt.figure()
ax3 = fig3.add_subplot(111)
ax4 = fig3.add_subplot(111)

ax4 = ax3.twinx()
line6 = ax3.plot(threshold, different_costs, '-r', label = 'Costs differences', linewidth = 2.0)
line7 = ax4.plot(threshold, costs1, '-b', label = 'Costs of Model 1 (OFF)', linewidth = 2.0)
line9 = ax4.plot(threshold, costs2, '-y', label = 'Costs of Model 2 (STANDBY)', linewidth = 2.0)

ax3.set_xlabel("Threshold")
ax3.set_ylabel("Costs savings")
ax4.set_ylabel("Total costs")

plt.suptitle("Costs savings of using MODEL 1")
plt.legend()

plt.show()

如何创建一个具有三个标签的图例?我怎样才能在我的图表之外显示这个图例?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com