I have a data-set that contains date {yyyy/mm/dd} and time {h,m,s} and temperature {float} as an individual columns.
I want to aggregate temperature values for each day by average function.
The problem is that, I don't know how I can query the time attribute to say for example aggregate {h,m, (0-5)s}
and {h,m, (5-10)s}
and {h,m, (10-15)s}
and ..., automatically.
If you want the average for all days:
I think the important part for your question is to group by the integer result of the division of the seconds by the range size.