I am plotting some frequencies inside a pandas dataframe, thus I decided to use the plot
functionality:
fig, ax = subplots()
df3.timestamp.value_counts().sort_index().plot(figsize=(25,10), colormap='jet',fontsize=20, kind='bar')
ax.grid()
However, since I have multiple timestamps my graphic looks like the above picture. How can I fix the x axis labels by just showing the most representative dates?