在这种情况下,图例标签来自 txt 文件,'\n'
末尾有一个字符。运行此代码段:
lines = np.array([[1,1],[2,2],[3,3]])
plt.rc('font', size=10.)
for i, line in enumerate(lines):
plt.plot(range(2), line, label='line number ' + str(i) +'\n')
plt.ylim(0,4)
plt.legend()
plt.show()
在Matplotlib 1.2.1
,1.3.0
你会得到不同的传说:
Matplotlib 1.2.1:
Matplotlib 1.3.0