matplotlib没有正确映射轴

时间:2017-11-26 02:52:17

标签: python pandas matplotlib

在matplotlib用于使用索引作为x轴之前,这就是我想要的。

现在它没有,为什么会这样?

            Close   Prediction
Date        
2017-06-21  155.03  152.586975
2017-06-22  154.89  153.450424
2017-06-23  158.02  150.374527
2017-06-26  157.50  149.241684
2017-06-27  151.03  148.880630

代码

import matplotlib.pyplot as plt2

plt2.plot(joined['Prediction'], color='red', label='Prediction')
plt2.plot(joined['Close'], color='blue', label='Actual')
plt2.legend(loc='upper left')
plt2.show()

1 个答案:

答案 0 :(得分:0)

您可以使用Pandas情节:

joined.plot()

enter image description here