I am trying to visualize Time series data is as follows
following is my code to plot the data
plt.plot(data['date'], data['c_16_avg_a'])
plt.xticks(rotation='vertical')
the date is getting truncated here. and the plot looks wired.
Any suggestions will greatly be appreciated
matplotlib
will simply go in the order the values are provided (i.e. go forwards and backwards) in time.$\endgroup$