Skip to content
Advertisement

Why month x-ticks are labelled wrongly in a datetime index?

I have a dataset of 12 values, with the index being a datetime64 type and I want to plot a bar graph of the data with the x-ticks showing the Month in English. I have used the MonthLocator and DateFormatter functions of matplotlib. These are working for one dataset but not with the other one. The x-ticks months are labelled wrongly. January should be the first index.

Dataset –> full_corr

JavaScript

Code used –>

JavaScript

Output is –> Output Plot

But when I plot the dataframe directly by using df.plot(kind="bar"), the x-ticks are showed properly in the full datetime format.

Advertisement

Answer

The problem is that 2010-01-31 is too near to 2010-02-01. So when you set width to 10, it overlays Feb.

i.stack.imgur.com/EDewS.png

A soution to solve this is to convert 2010-01-31 to 2010-01.

JavaScript

enter image description here

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement