I am trying to plot some time series’ and I struggle with the tick labels. my df looks like this:
JavaScript
x
22
22
1
Q1-Q5
2
Date
3
2003 -0.183333
4
2004 -0.195833
5
2005 0.044167
6
2006 -0.040000
7
2007 0.841667
8
2008 0.251667
9
2009 -0.913333
10
2010 -0.471667
11
2011 0.005833
12
2012 -0.297500
13
2013 -0.625833
14
2014 0.290833
15
2015 0.059167
16
2016 0.632500
17
2017 1.015000
18
2018 0.258333
19
2019 0.030000
20
2020 0.651667
21
2021 0.255000
22
The code to plot it looks like this:
JavaScript
1
7
1
fig, (ax1, ax2,ax3, ax4) = plt.subplots(4, 1, figsize = (20,20))
2
df.plot(ax = ax1)
3
ax1.set_yticks(y_ticks)
4
ax1.tick_params(axis='x', labelrotation = 90)
5
ax1.grid(axis = 'y')
6
ax1.set_ylim(-1.5, 1.5)
7
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
1
11
11
1
import pandas as pd
2
import matplotlib.pylab as plt
3
4
data = pd.read_csv("years_data.txt", sep=" ")
5
6
fig, (ax1, ax2,ax3, ax4) = plt.subplots(4, 1, figsize = (20,20))
7
data.plot(x='Year', y='Q1-Q5', ax = ax1)
8
ax1.set_xticklabels(data['Year'])
9
ax1.grid(axis = 'y')
10
ax1.set_ylim(-1.5, 1.5)
11
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
1
5
1
fig, ax =plt.subplots()
2
data.plot(x='Year', y='Q1-Q5', ax =ax)
3
ax.set_xticklabels(data['Year'])
4
ax.set_ylim(-1.5, 1.5)
5
The output:
Then I personally like to modify tick marks using the function plt.setp()
:
JavaScript
1
6
1
fig, ax =plt.subplots()
2
data.plot(x='Year', y='Q1-Q5', ax =ax)
3
ax.set_xticklabels(data['Year'])
4
plt.setp( ax.xaxis.get_majorticklabels(), rotation=-45, ha="left", weight="bold")
5
ax.set_ylim(-1.5, 1.5)
6
The output is: