You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to add a line plot which shows the annual progress across each year, January through December, with each year on the same plot. The count column in the dataframe would need to reset for each year if that is used for the plot like it is in the current plots.
Note that the dataframe's index is currently set to the date, so the below mask works to filter by year.
mask=data.index.year==int(2019)`
The text was updated successfully, but these errors were encountered:
The plot would have 5 lines on it. A cumulative submission count from January to December which one line for each year (2016, 2017, 2018, 2019, and 2020). So kind of like the first plot in the existing Jupyter notebook. Except that instead of going from 2016 to today, each line is only for one year. Starting from zero each year on January 1st. 2016 should start at 0 and end at ~40. 2017 should start at 0 and end at ~100. For example.
I would like to add a line plot which shows the annual progress across each year, January through December, with each year on the same plot. The
count
column in the dataframe would need to reset for each year if that is used for the plot like it is in the current plots.Note that the dataframe's index is currently set to the date, so the below mask works to filter by year.
The text was updated successfully, but these errors were encountered: