So, i have the following data frame on pandas:
I need to create another data frame with the average delivery time by day, by i'm having a hardtime with this task.
So, as you can see, I have all the 365 days of 2018 and I need to calculate what was the average time the user had to wait before getting his order delivered. I only need the hours, minutes and seconds, because the number of days will never be grater than 0. And the delivery time is timedelta64 format.
Thank you folks!