Hi,
While i am working with iot data to transform UNIX epoch time in seconds. I would like to convert epoch time in seconds into human readable date time and not a reference date which is based upon 1970.
I have my data in pandas dataframe, below screen shot shows "createdTime" column in epoch time in seconds:
Here is the code segment that convert UNIX epoch time into date time:
convert = lambda x: datetime.datetime.fromtimestamp(x / 1e3)
ds['ts'] = ds['createdTime'].apply(convert)
ds.head()
This code generates the expected output, below screen shot shows the output:
Hope this helps!
While i am working with iot data to transform UNIX epoch time in seconds. I would like to convert epoch time in seconds into human readable date time and not a reference date which is based upon 1970.
I have my data in pandas dataframe, below screen shot shows "createdTime" column in epoch time in seconds:
Here is the code segment that convert UNIX epoch time into date time:
convert = lambda x: datetime.datetime.fromtimestamp(x / 1e3)
ds['ts'] = ds['createdTime'].apply(convert)
ds.head()
This code generates the expected output, below screen shot shows the output:
Hope this helps!