import pandas as pd
import matplotlib as plt
a = pd.Series(range(0,10), index=pd.date_range('2011-1-1',periods=10)
a.plot()
# here with the standard color
但是当满足某个条件时(比如func_condition(a) > some_value
)我希望我绘制的系列在所选时间内改变颜色(在这种情况下,它是datetime_index
)。我看到了一些使用scatter_plot
来处理这个问题的话题,但它是非常标准的,并且有点'。我喜欢这个系列是连续的,我希望它能够采用一般的映射功能。
有什么想法吗?
答案 0 :(得分:0)