I'm importing some data in a spreadsheet. It's in a dataframe, but the date is in a numerical representation or format
41516.43
First, I want to convert it to a date and time object
date_val = 30/08/2013 10:13:26 AM
Then I would like to split the date_val into date and time separately, and place them in seperate columns in my dataframe (df)
| **original date** | **date** | **time** |
41516.43 30/08/2013 10:13:26 AM