6
แกนทุติยภูมิที่มี twinx (): จะเพิ่มตำนานอย่างไร?
ฉันมีโครงเรื่องที่มีแกน 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 …
288
python
matplotlib
axis
legend