I have a DataFrame quantities as follows:

> quantities.head(2).to_dict()
{'created': {0: Timestamp('2022-08-09 00:02:33.786000'),
1: Timestamp('2022-08-09 00:02:33.787000')},
'quantity': {0: 1, 1: 1}}
How do I make a histogram out of it with date along x axis, total quantity for the date on y axis?
I tried
quantities = quantities.set_index("created")
But the resulting histogram didn't make any sense to me.
Edit. Long day. I got it all wrong. Per comments, it looks like I what I need is a bar chart, or even a regular line plot, with date along the x axis, and the total sum of quantities for the given day along y. I need to find a way to group by day. Help?
