我需要绘制一系列与不同组相关的数据:
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
...
我怎样才能意识到它?