I have a Pandas Dataframe with 2000+ rows with date in float format as below:
42704.99686342593
representing datetime value of (2016, 11, 30, 23, 55, 29)
What I want to do is iterate each row in the dataframe and convert the float to the correct datetime format ideally d/m/Y H/M/S
and save this to a new dataframe.
Using Python 2.7.
I couldn't find any duplicate questions and was unable to solve the issue with solutions to similar questions so any help appreciated.
Thanks.