Mam wykres z dwiema osiami Y, używając twinx()
. Daję również etykiety do linii i chcę je pokazać legend()
, ale udało mi się uzyskać etykiety tylko jednej osi w legendzie:
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()
Dostaję więc tylko etykiety pierwszej osi w legendzie, a nie etykietę „temp” drugiej osi. Jak mogę dodać tę trzecią etykietę do legendy?
ax
stylu, w którym używamax2
: w Twoja sprawa,ax.plot([], [], '-r', label = 'temp')
. Jest to znacznie szybsze i prostsze niż robienie tego poprawnie ...