标签: python matplotlib plot
我想连接绘制的数据点。
plt.plot(us, mu, 'ro', us, ru, 'go') plt.show()
答案 0 :(得分:0)
根据pyplot documentation你可以试试这个。
# adding dotted line between points plt.plot(us, mu, 'r:o', us, ru, 'g:o') plt.show()