I am importing some data into a spreadsheet. It is in a data frame, 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 date_val by date and time separately and put them in separate columns in my data frame (df)
| **original date** | **date** | **time** |
41516.43 30/08/2013 10:13:26 AM
source
share