I'm trying to graph different quarters' worth of economic data. I have a pandas dataframe and I imported the csv like:
unemployment_data = pd.read_csv("unemploymentbystate.csv")
unemployment_data.set_index('Date')
unemployment_data.plot()
But how do I get the 21 ticks to show on the X axis as Q1 2015 through q1 2020 iteratively? (I.e. q2 2015, q3 2015...up to q1 2020)?
right now it only shows random intervals of 0.0, 2.5, 5.0, 7.5 up to 20 on the x axis.
Thank you!