I have a data in which the time are recorded as digits in each columns of a numpy array (dtype= float64) as shown here.
year month day hour
2013 12 3 8.3478
2013 12 3 8.3480
2013 12 3 8.3482
2013 12 3 8.3488
2013 12 3 8.3490
2013 12 3 8.3492
Here the first, second, third, and fourth columns are year, month, day, and hour respectively.
I would like to convert this into datetime format (like '%y/%m/%d %H:%M:%S') by either combining the entries in each columns into a single column or in any other ways.