I have a dataframe in my Jupyter notebook with a column of epoch timestamps, it looks like this:
Name stop ts remark
A 01 1546470653 -
B 032 1546470969 Not listed
C 022 1546471069 Not listed
D 045 1546471238 Not listed
What I'm trying to do is to convert the epoch timestamp to human readable date & time with time zone (utc+8), the result should look like this:
Name stop ts remark timestamp
A 01 1546470653 - 2019-01-03T07:10:53+08:00
B 032 1546470969 Not listed 2019-01-03T07:16:09+08:00
C 022 1546471069 Not listed 2019-01-03T07:17:49+08:00
D 045 1546471238 Not listed 2019-01-03T07:20:38+08:00
Can someone help me achieve this? Thanks a lot!