I am trying to turn that number from a dataframe into a datetime, the column time['date'] looks like the following:
i tried the following:
df1["st_mtime"]=pd.to_datetime(df1["st_mtime"],unit="s")
so i am getting below error:
OutOfBoundsDatetime: cannot convert input -11644473600.0 with the unit 's'
I want it to be changed to dd/mm/yyyy HH:MM:SS
.