Hi I have a dataframe with dates as index as shares as columns I want to plot a particular share using dates as x axis. The series I want to plot is : df['APPL']=
Date
2018-10-29 24.903347
2018-10-30 25.165384
2018-10-31 25.087744
2018-11-01 24.777180
...
2018-12-06 25.709999
But when I plot it out with df['APPL'].plot(use_index=True
), the xasix is not showing.
Then I tried plt.plot(df.index,df['APPL'])
, the interval of x axis is too small for it to be read. .
How can I increase the interval to show every 10 days for example?