0
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.plot(hpi_data, label = hpi_data.columns.values) #<-- how to add values to each plot?
ax1.plot(benchmark, linewidth=3, label='Benchmark')
plt.legend(loc=2, ncol=2, prop={'size':12}).get_frame().set_alpha(0.1)
plt.show()
如何添加「一到一個」傳奇每個情節(在Python matplotlib)
請參閱傳說,它看起來有點凌亂。有誰知道如何爲每個標籤分配每個標籤?
的[我如何在matplotlib一次指派多個標籤?(可能的複製http://stackoverflow.com/questions/11481644/how-do-i-assign-multiple-labels-at-once-in-matplotlib) – Suever