我试图用plt.legend
在我的绘图上做注释,但是我没有得到'[11,12]'参数的含义。它没有说它属于哪个参数。
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(1, 11)
fig = plt.figure(1)
ax1 = plt.subplot(2, 1, 1)
ax2 = plt.subplot(2, 1, 2)
l1, = ax1.plot(x, x*x, 'r') #这里关键哦
l2, = ax2.plot(x, x*x, 'b') # 注意
plt.legend([l1, l2], ['first', 'second'], loc = 'upper right') #其中,loc表示位置的;
plt.show()
有人能解释plt.legend
[11,12]中的哪个参数吗?