0
我創建了一個字典的一段代碼:拆分元組的字典成大熊貓數據幀
dat[r["author_name"]] = (r["num_deletions"], r["num_insertions"],
r["num_lines_changed"], r["num_files_changed"], r["author_date"])
我想,然後把這些字典,並創建一個列的熊貓
author_name | num_deletions | num_insertions | num_lines_changed |num_files changed | author_date
我試過這個:
df = pd.DataFrame(list(dat.iteritems()),
columns=['author_name',"num_deletions", "num_insertions", "num_lines_changed",
"num_files_changed", "author_date"])
但它不起作用,因爲它讀取鍵和元組的dicti只有兩列,而不是六列。那麼我怎樣才能把這個元組中的五個條目中的每一個都分成不同的列呢?