ฉันมีโครงเรื่องที่มีแกน y สองแกนใช้twinx()
อยู่ ฉันยังให้ป้ายกำกับให้กับบรรทัดและต้องการแสดงด้วยlegend()
แต่ฉันก็ทำได้เพียงได้รับเลเบลของหนึ่งแกนในตำนาน:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import rc
rc('mathtext', default='regular')
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(time, Swdown, '-', label = 'Swdown')
ax.plot(time, Rn, '-', label = 'Rn')
ax2 = ax.twinx()
ax2.plot(time, temp, '-r', label = 'temp')
ax.legend(loc=0)
ax.grid()
ax.set_xlabel("Time (h)")
ax.set_ylabel(r"Radiation ($MJ\,m^{-2}\,d^{-1}$)")
ax2.set_ylabel(r"Temperature ($^\circ$C)")
ax2.set_ylim(0, 35)
ax.set_ylim(-20,100)
plt.show()
ดังนั้นฉันจะได้รับเลเบลของแกนแรกในตำนานเท่านั้นไม่ใช่เลเบล 'ชั่วคราว' ของแกนที่สอง ฉันจะเพิ่มป้ายกำกับที่สามนี้ในตำนานได้อย่างไร
ax
กับการใช้งานผมสไตล์ax2
ในax.plot([], [], '-r', label = 'temp')
กรณีของคุณ มันมากเร็วขึ้นและง่ายกว่าการทำมันอย่างถูกต้อง ...