I have one time column structured like this
- 02/01/2003 07:01:42
- 02/01/2003 07:04:02
- 02/01/2003 07:36:11
- 02/01/2003 07:53:09
and an adjacent column with values as integers
- 2
- 4
- 1
- 1
I want to get the aggregate of the values (average) in hourly intervals. So:
- 02/01/2003 07
with "2" adjacent to hour 7 (2 is the average of 2,4,1,1)