在python

时间:2019-02-23 14:01:34

标签: python pandas matplotlib

我在panda中有一个DataFrame,我正在使用matplotlib在折线图中绘制两列。但是,我不知道如何更改每行的颜色。我只能更改两者或全部都不更改。 使用.plot()我只能更改两个。 c='red',但我希望每行使用不同的颜色。 Screenshot of code and graph

1 个答案:

答案 0 :(得分:1)

要绘制2列颜色为“绿色”和“棕色”的数据框,请使用以下代码:

df[['Close 30 Day MA', 'Close']].plot(figsize(16,6), color=['green', 'brown'])

希望有帮助。