Pyplot图例显示标记信息

时间:2013-11-04 18:06:51

标签: python matplotlib plot

我需要绘制一系列与不同组相关的数据:

y_values = [y1,y2,y3...]
height = [x1,x2,x3...]
weight = [z1,z2,z3...]
income = [w1,w2,w3...]

所有数据都与相同的y_value相关联。为了在我使用的情节中区分它们:

plt.plot(height[0],y_values[0],'b.')
plt.plot(income[0],y_values[0],'b*')
...

现在我想要一个显示每个标记含义的图例:

. height
* income
...

我怎么能意识到它?

1 个答案:

答案 0 :(得分:1)

将label参数与图例结合使用:

plt.plot(height[0],y_values[0],'b.', label='Height')
plt.legend()