2
我使用matplotlib創建了一個情節,似乎我陷入了一個問題。 我畫3個次要情節,我想獲得傳說共同爲所有subplot matplotlib的常見傳奇
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)
的我已經使用了傳說中的實例,但它顯示僅在最後的插曲legen。
非常感謝您!它幫助了很多! – Monica