To convert a pandas data frame value from unix timestamp to python datetime you need to use:
pd.to_datetime(df['timestamp'], unit='s')
where:
* timestamp is the column containing the timestamp value
* unit='s' defines the unit of the timestamp (seconds in this