Matplotlib问题:plt.plot(x,y,' .r - ')连接来自原点的每个点而不是相互连接

时间:2017-04-25 20:49:37

标签: python matplotlib

x = [Timestamp ('03-01-2011 00:00:00'), Timestamp ('09-01-2014 00:00:00'), ... ]

y = [144, 23, ...]

plt.plot(x, y, '.r')
plt.plot(x, y, marker = 'o', linestyle = '--')

enter image description here

在plt.plot(x,y,' .r'),仅散点图中看起来像什么。

enter image description here

添加线条时的样子......

数据类型: x = 2008年至2014年的时间戳。 y =每个时间戳的整数值。

如何从点到点连接散点图而不是从原点连接它们?

0 个答案:

没有答案