使用matplotlib.pyplot在图上绘制许多点

时间:2020-02-12 07:16:16

标签: python matplotlib

我想在一个图形上绘制许多点。我使用的方法是:

main_ax.plot(10, 20, '.w')

这段代码可以帮助我将(10,20)指向一个点

但是我需要绘制很多点:

data = [(13, 45), (13, 46), (13, 47), (13, 48), (13, 49), (13, 50), (13, 51), (13, 52), (13, 53), (13, 54), (14, 40), (14, 41), (14, 42), (14, 43), (14, 44), (14, 55), (14, 56), (14, 57), (14, 58), (14, 59), (15, 37), (15, 38), (15, 39), (15, 60), (15, 61), (15, 62), (16, 35)]

我知道绘制这些点的唯一方法是:

main_ax.plot(13, 45, '.w')
main_ax.plot(13, 46, '.w')
main_ax.plot(13, 47, '.w')
main_ax.plot(13, 48, '.w')........

还有其他更快的方法可以绘制许多点吗?

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以将数据分为xy坐标的两个列表,并绘制散点图:

x, y = zip(*data)
plt.scatter(x, y)

enter image description here