Skip to content
Advertisement

Getting Value Error when calculating time diffrences from a reference time in Pandas

Given a df

JavaScript

I would like to calculate the time diffrence between the first row and the subsequent rows under the column time and express the result in the unit of seconds.

JavaScript

However the compiler return an error

JavaScript

The code to reproduce the above error is

JavaScript

Expected output

JavaScript

Advertisement

Answer

You need to change the dtype to 'timedelta64[s]' since you want the difference in seconds.

Replace

JavaScript

with

JavaScript

and your code will produce the expected outcome.

Output:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement