Pandas Groupby datetime by multiple hours
I have a log dataset which looks like the following:-
Time event
2020-08-27 07:00:00 1
2020-08-27 08:34:00 1
2020-08-27 16:42:23 1
2020-08-27 23:19:11 1
.
.
.
I am trying to get the count of events that happened within different hourly interval (6 hours, 8 hours etc). Any ideas on how I can get it done pandas ?
Topic groupby time-series pandas
Category Data Science