我的图表是一个分散的xy图。有没有办法,我可以加入点,独立于数组中点的顺序?连接点的顺序取决于x而不是数组中的序列。所以,基本上,线从左到右遍历。
我正在使用
plot0.plot(x0, y0, 'ko-', lw=1, color="red",label="dummy")
但它按照它们在数组中出现的顺序连接点。因此图形变成了曲折。
答案 0 :(得分:0)
If you want the connecting line to go from left to right then you have to sort your data points in order of increasing x:
s = np.argsort(x0)
plt.plot(x0[s], y0[s], 'ko-')