-1
我試圖把一年(1980年)轉換爲熊貓中的datetime
列,但是我收到一個錯誤。有人知道我做錯了什麼?Python熊貓 - 進入日期時間的錯誤
import pandas as pd
import datetime
df = pd.read_csv(r'd:\downloads\googlebooks-eng-all-1gram-20120701-a', sep='\t',
header=None, \
names=["word","year","occurred","books"], \
dtype={"word":"str","year":"datetime","occured":"int64","books":"int64"},
parse_dates=True)
df.head()
的錯誤是
TypeError: data type "datetime" not understood
這樣做後仍然會出現完全相同的錯誤。 – Superdooperhero
嘗試'從datetime導入日期時間' –
仍然不能正常工作 – Superdooperhero