I have data (DateTime stamp) and corresponded value. The Date field which has a series of picked dates formatted as (dd/mm/yyyy hh:mm: ss) some rows have 3 values or more. Is there any way in python to take the average of the values at the same hour and save it in one row with the hour hh:00:00.
Example
01/01/2019 01:13 35 **
01/01/2019 01:38 37 **
01/01/2019 02:03 45 **
01/01/2019 02:15 46 **
01/01/2019 02:40 55 **
and need to be like :
01/01/2019 01:00 36 **
01/02/2019 02:00 50
Thanks