将点添加到现有的matplotlib散点图
问题内容:
如何在现有图中添加点?直接的解决方案是绘制一个新的散点图,添加新的数据。
ax.scatter(data[:,0], data[:,1], cmap = cmap, c = color_data)
ax.scatter(new_points_x, new_points_y, color='blue')
但是,如果我们想用新的颜色添加更多的点,则存在一个问题:我们必须考虑所有先前添加的点。
如果可以使用一个特殊的功能,那就太好了
AddPoint(ax, new_point, color)
我只想用新颜色添加新点。我不需要任何动画
问题答案:
目前尚不清楚为什么scatter
不接受按@ b-fg的建议创建第二个,但是可以编写如下函数:
def addPoint(scat, new_point, c='k'):
old_off = scat.get_offsets()
new_off = np.concatenate([old_off,np.array(new_point, ndmin=2)])
old_c = scat.get_facecolors()
new_c = np.concatenate([old_c, np.array(matplotlib.colors.to_rgba(c), ndmin=2)])
scat.set_offsets(new_off)
scat.set_facecolors(new_c)
scat.axes.figure.canvas.draw_idle()
这允许您将新点添加到现有点PathCollection
。
例:
fig, ax = plt.subplots()
scat = ax.scatter([0,1,2],[3,4,5],cmap=matplotlib.cm.spring, c=[0,2,1])
fig.canvas.draw() # if running all the code in the same cell, this is required for it to work, not sure why
addPoint(scat, [3,6], 'c')
addPoint(scat, [3.1,6.1], 'pink')
addPoint(scat, [3.2,6.2], 'r')
addPoint(scat, [3.3,6.3], 'xkcd:teal')
ax.set_xlim(-1,4)
ax.set_ylim(2,7)
请注意,我提议的功能非常基础,根据使用情况,需要使其变得更加智能。重要的是要认识到facecolors
aPathCollection
中的数组不一定具有与点数相同的元素数,因此,如果您尝试一次添加多个点,或者原始点都是相同的颜色等