I have a big dataframe with 5 minute granularity where I'd like to find values within a time span
Time X
Date
2019-09-13 06:00:00 06:00:00 1200
2019-09-13 06:05:00 06:05:00 1250
2019-09-13 06:10:00 06:10:00 1270
2019-09-13 06:15:00 06:15:00 1240
2019-09-13 06:20:00 06:20:00 1250
2019-09-13 06:25:00 06:25:00 1230
the goal is to find x.max() value, for instance between 06:00 - 07.00 in each day.
How would you do this?