在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()