let's say I have
df = pd.DataFrame([{'Date': '3/4/2021', 'count': 2}, {'Date': '3/6/2021', 'count': 3}, {'Date': '3/12/2021', 'count': 5}], columns = ['Date', 'count'])
If I graph simply
df.plot(x = 'Date, y='count')
Then the dates on the x axis will be woefully un-sequential and I won't have a useable time horizon on the x axis. How can I make the x axis just a sequential list of dates and then have the plot populated based on whether the value of df['Date'] matches the date on the x axis?
