最佳答案
我想在下面的每一个次要情节中加入传奇。 我试过了,但是没用。
有什么建议吗?
提前谢谢: -)
f, (ax1, ax2, ax3) = plt.subplots(3, sharex=True, sharey=True)
ax1.plot(xtr, color='r', label='Blue stars')
ax2.plot(ytr, color='g')
ax3.plot(ztr, color='b')
ax1.set_title('2012/09/15')
plt.legend([ax1, ax2, ax3],["HHZ 1", "HHN", "HHE"])
plt.show()
在 atomh33ls 的建议下:
ax1.legend("HHZ 1",loc="upper right")
ax2.legend("HHN",loc="upper right")
ax3.legend("HHE",loc="upper right")
图例的位置是固定的,但它似乎有一个问题与字符串,因为每个字母放在一个新的行。
有人知道怎么修吗?