I have a dictionary containing instances of Python's datetime.date and associated numeric values (integers). Something like this but a lot larger of course:
{datetime.date(2016, 5, 31): 27, datetime.date(2016, 9, 1): 87}
I am trying to use Matplotlib in order to build a line graph that would display these numeric values (y) against these dates (x), in chronological order.
Something like this:
I am new to Matplotlib and fairly new to Python as well. I tried a few solutions but they wouldn't add anything meaningful to the question.
Any help would be appreciated.
Thank you
![[Example line graph][1] (I can't embed images.)](https://gamingcommission.club/i.sstatic.net/IFHdP.png)

