1
我有一個熊貓數據框df
,其中包含格式爲1,475,761,269,562
的UNIX時間戳列。如何將UNIX時間戳列表轉換爲熊貓數據框中的日期時間對象列表?
當我嘗試將其與 df["Timestamp"] = pd.to_datetime(df["Timestamp"], unit = "s")
轉換,
我得到 OverflowError: Long too big to convert
。
我在做什麼錯?
解決 - 張貼問題後的20秒! – sudonym