My code currently looks like:
fig = plt.figure(figsize=(10, 5))
ax = plt.gca()
plt.plot(new_stripped_df["Month"],new_stripped_df['(ii) Monthly difference, Natural log of the Exchange Rate per U.S. Dollar'])
plt.title('Monthly Growth in Nominal Exchange rates',fontdict={'fontname':'Calibri','fontsize':15})
plt.xlabel("Date",fontdict={'fontname':'Calibri','fontsize':10})
plt.ylabel("Log Change",fontdict={'fontname':'Calibri','fontsize':10})
plt.tight_layout()
plt.show()
Which returns:
As you can see the x axis tickers are unreadable and I want to include only every 5 years from 1960 to 1990 on the x axis. new_stripped_df["Month"]
is in format: Jan 1960 all the way up to Dec 1990.