如何在Python中连接散点图的点?

时间:2016-11-22 10:15:22

标签: python matplotlib plot

我想连接绘制的数据点。

plt.plot(us, mu, 'ro', us, ru, 'go')
plt.show()

1 个答案:

答案 0 :(得分:0)

根据pyplot documentation你可以试试这个。

# adding dotted line between points
plt.plot(us, mu, 'r:o', us, ru, 'g:o')
plt.show()