x = [1,2,3,4,5,6]
y = [3,4,5,6,7,8]
plt.scatter(x[1:], y[1:], c='blue')
plt.scatter(x[0], y[0], c='red', marker='D', s=100);
# you can even write text as a marker
plt.scatter(x[0], y[0], c='red', marker=r'$\tau$', s=100);
如果要高亮显示的点不是第一个点,则过滤遮罩可能会有用。例如,下面的代码突出显示第三点。
plt.scatter(*zip(*(xy for i, xy in enumerate(zip(x, y)) if i!=2)), marker=6)
plt.scatter(x[2], y[2], c='red', marker=7, s=200);
也许,numpy的过滤更简单。
data = np.array([x, y]) # construct a single 2d array
plt.scatter(*data[:, np.arange(len(x))!=2], marker=6) # plot all except the third point
plt.scatter(*data[:, 2], c='red', marker=7, s=200); # plot the third point
2条答案
按热度按时间eivnm1vs1#
最简单的可能答案之一。
b4wnujal2#
scatter()
调用提供了更大的灵活性,您可以更直观地更改标记样式,大小和颜色(例如D
代表钻石)。如果要高亮显示的点不是第一个点,则过滤遮罩可能会有用。例如,下面的代码突出显示第三点。
也许,numpy的过滤更简单。
作为旁注,您可以找到标记样式here或
matplotlib.markers.MarkerStyle.markers
的完整字典。