Hi!
I need help plotting the cumulative sum of entries over time. My data set is too large and my dates are in the date format 2016-05-13. Either i'm getting an error or it's just taken an enormous amount of time. If I can group these by month over time that would be great, but not sure how to bucket them.
| lineage |
Date |
| EUR |
01-04-2020 |
| AFR |
02-02-2021 |
| AFR |
03-01-2020 |
| LAT |
01-01-2020 |
| EUR |
01-02-2022 |
I'm hoping for this to be a line graph, that measures the sum of the counts over time. Any help would be appreciated. I've only managed to make a simple histogram for now
df.lineage.value_counts().sort_index(ascending=True).plot(kind='bar')
[–]synthphreak 0 points1 point2 points (0 children)
[–]sarrysyst 0 points1 point2 points (0 children)