Skip to content
Advertisement

How can I make Matplotlib show all tick labels?

I am trying to plot some time series’ and I struggle with the tick labels. my df looks like this:

JavaScript

The code to plot it looks like this:

JavaScript

The plot however looks like this

https://i.stack.imgur.com/tKqP6.png

How can I make it thath it shows all years as x ticks?

Thank you in advance

Advertisement

Answer

Try this:

JavaScript

The output is: enter image description here

I used set_xticklabels() function instead of tick_params(). I found this tutorial here. You have to give it the list of tick marks that you desire.

If you want to see only the plot of interest:

JavaScript

The output:

enter image description here

Then I personally like to modify tick marks using the function plt.setp():

JavaScript

The output is:

enter image description here

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