Hi I have the below dataframe, in which few dates have "dd-mm-yyyy hh:mm" format and few "mm/dd/yyyy hh:mm". However i want to change all to "mm/dd/yyyy hh:mm" format
Below, "02-05-2018 07:45" is in "dd-mm-yyyy hh:mm" format. Which means, 2nd of May. I need it to be converted to 5th of Feb i.e "02/05/2018 07:45" which is in mm/dd/yyyy hh:mm" format
Input :
Date / Time Object Value
02-05-2018 07:45 30
02-05-2018 08:00 0
1/30/2018 22:30 65.125
1/30/2018 22:45 0
1/30/2018 23:00 58
Output :
Date / Time Object Value
02/05/2018 07:45 30
02/05/2018 08:00 0
1/30/2018 22:30 65.125
1/30/2018 22:45 0
1/30/2018 23:00 58