matplotlib标签不起作用

时间:2013-02-02 00:11:42

标签: python matplotlib

当我执行以下代码时,它不会生成带有标签的图。

import matplotlib.pyplot as plt
import numpy as np
x = np.arange(1, 5)
plt.plot(x, x*1.5, label='Normal')

Numpy版本是'1.6.2' Matplotlib版本是'1.3.x'

有关为何发生这种情况的任何想法?

1 个答案:

答案 0 :(得分:50)

您忘记显示legend

...
plt.legend(loc='best')
plt.show()

enter image description here