I have found this where 1,5 is 1,5 days
pd.to_timedelta('1,5')
But it gives me 0 days 00:00:00.000000015
I needed this : 1 days 12:00:00.000000000
How to convert float days to timedelta64[ns] in a pandas column dataframe please ?
I have found this where 1,5 is 1,5 days
pd.to_timedelta('1,5')
But it gives me 0 days 00:00:00.000000015
I needed this : 1 days 12:00:00.000000000
How to convert float days to timedelta64[ns] in a pandas column dataframe please ?