gpt4 book ai didi

python - 子图 matplotlib 的常见图例

转载 作者:行者123 更新时间:2023-11-28 16:20:11 25 4
gpt4 key购买 nike

<分区>

我正在使用 matplotlib 创建绘图,但似乎我遇到了一个问题。我画了 3 个子图,我想为所有子图获得共同的图例

fig, (ax, ax2, ax3) = plt.subplots(3, 1, sharex=True)
ax.plot(FRAME1['T1'],FRAME1['Num'], marker = 'o', label='1')
ax2.plot(FRAME3['T1'],FRAME3['Num'], marker = 'o', label='2',color='r')
ax2.plot(FRAME4['T1'],FRAME4['Num'], marker = 'o', label='3',color='turquoise')
ax3.plot(FRAME2['T1'],FRAME2['Num'], marker = 'o', label='4',color='g')

ax.set_ylim(-118, -116.5)
ax3.set_ylim(-136, -135)

plt.legend( (ax,ax2,ax3),loc="upper left", bbox_to_anchor=[0, 1],
ncol=2, shadow=True, title="Legend", fancybox=True)

我使用了图例实例,但它只在最后一个子图中显示图例。

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