如何在Matplotlib中绘制不同的颜色

时间:2012-07-18 21:30:00

标签: python graph matplotlib

我是Matplotlib的新手。我每秒都有一个人的位置,我正在尝试制作一个显示这个的图表。我已设法展示它,但现在我希望它根据速度显示不同的颜色。所以,我需要plt.plot()颜色取决于每对点之间的距离,而不是总是相同。 这就是我现在所拥有的:

x = [i[0] for i in walk]
y = [i[1] for i in walk]
plt.clf()
fig = plt.gcf()
plt.axis([0, 391, 0, 578])
im = plt.imread('field.png')
cancha = plt.imshow(im)
plt.plot(x,y)
plt.axis('off')
plt.savefig( IMG_DIR + 'match.png',bbox_inches='tight')
plt.clf()

我想添加一些根据距离定义颜色的变量([x [i],y [i]],[x [j],y [j]])

有谁知道怎么做?

谢谢!

3 个答案:

答案 0 :(得分:1)

scatter会做你想做的事(doc)。

 plt.scatter(x,y,c=distance(x,y))
 plt.plot(x,y,'-') # adds lines between points

但是,这不会连接标记。如果你想在每个段上使用不同颜色的线,我认为你必须绘制大量的两个点线。

编辑:按照Vorticity评论中的建议添加plot

答案 1 :(得分:1)

我写了一些代码来说明如何解决这个问题。据我所知,没有办法为每个线段着色,因此我不得不循环每一步,每次都绘制(并选择合适的颜色)。

import matplotlib.pyplot as plt
import numpy

x = numpy.array([1, 1.5, 5, 1, 4, 4])
y = numpy.array([1, 2, 1, 3, 5, 5])

# calculate the absolute distance for each step
distances = numpy.abs(numpy.diff((x**2 + y**2)**0.5))

ax = plt.axes()

# pick a colormap, and define a normalization to take distances to the range 0-1
cmap = plt.get_cmap('jet')
norm = plt.normalize(min(distances), max(distances))

# loop through each walk segment, plotting the line as coloured by
# the distance of the segment, scaled with the norm and a colour chosen
# using the normed distance and the cmap
for i in range(1, len(x)):
    distance = distances[i-1]
    x0, y0 = x[i-1], y[i-1]
    x1, y1 = x[i], y[i]
    ax.plot([x0, x1], [y0, y1], '-', color=cmap(norm(distance)))

# put points for each observation (no colouring)
ax.scatter(x, y)

# create a mappable suitable for creation of a colorbar
import matplotlib.cm as cm
mappable = cm.ScalarMappable(norm, cmap)
mappable.set_array(distance)

# create the colorbar
cb = plt.colorbar(mappable)    
cb.set_label('Distance / meters')

# add some additional information
plt.title("Person 1's walk path")
plt.xlabel('x / meters')
plt.ylabel('y / meters')

# add some additional text to show the total distance walked. 
# The coordinates are in axes coordinates (ax.transAxes).
plt.text(0.99, 0.01, 'Total distance: %.02f meters' % numpy.sum(distances), 
         transform=ax.transAxes, horizontalalignment='right')

plt.show()

Code output

希望代码和注释充分自我记录(创建颜色栏的可映射部分可能是最难,最棘手的部分,你可能甚至不想要一个!)

答案 2 :(得分:0)

您也可以尝试quiver。它制作一个方向场(箭头)图。

import pylab as plt

x=[12, 13, 14, 15, 16]
y=[14, 15, 16, 17, 18]
speed=[1,2,3,4,5]

# Determine the direction by the difference between consecutive points
v_x=[j-i for i, j in zip(x[:-1], x[1:])] 
v_x.append(v_x[-1]) # The last point 
v_y=[j-i for i, j in zip(y[:-1], y[1:])]
v_y.append(v_y[-1]) # The last point

plt.quiver(x,y,v_x,v_y,speed)
plt.colorbar()
plt.xlim(11,17)
plt.ylim(13,19)
plt.show()

enter image description here

如果需要,您还可以使箭头大小取决于该位置的速度。