请考虑每周系列:
series
Out[71]:
index
2019-02-17 -804.500
2019-02-24 -478.500
2019-03-03 -2168.070
2019-03-10 2231.800
2019-03-17 -340.500
Freq: W-SUN, Name: 0, dtype: float64
条形图,
plt.bar(height = series, x = series.index)
问题:
如您所见,x轴日期不是系列索引中的日期,因此它们不会与条垂直对齐。如何让matplotlib将系列的索引显示为x轴标签?