I have the following dataframe and am trying to plot it, so that it shows in the x-axis the index data from 8-19.
If I do df.plot() no labels are shown at a
df.plot()
Until the bug in Pandas gets fixed, add this after df.plot(), no need for anything else:
plt.xticks(range(len(df.index)), df.index)