Python中的多色-时间序列散点图

时间:2018-07-20 04:49:49

标签: python time-series scatter-plot

我是python的新手。我有需要散点图的时间序列数据。 我基本上希望正常和异常标签具有不同的颜色。请参见下面的数据图和图:

实际数据

enter image description here

数据中的预期重排

enter image description here


期望的情节

enter image description here


我将非常感谢您在此方面所取得的任何领先优势! 预先感谢!

1 个答案:

答案 0 :(得分:1)

您可以使用matplotlib.pyplot的{​​{3}}

import matplotlib.pyplot as plt

plt.scatter('#normal_TimestampColumn', '#normalColumn', facecolors='b')
plt.scatter('#abnormal_timestampColumn', '#abnormalColumn', facecolors='orange')