我有這種形式的一些數據:熊貓數據幀從列表/字典/列表
a = [{'table': 'a', 'field':['apple', 'pear']},
{'table': 'b', 'field':['grape', 'berry']}]
我想創建一個數據幀,看起來像這樣:
field table
0 apple a
1 pear a
2 grape b
3 berry b
當我試試這個:
pd.DataFrame.from_records(a)
我得到這個:
field table
0 [apple, pear] a
1 [grape, berry] b
我正在使用一個循環來重構我的原始數據,但我認爲必須有一個更直接和更簡單的方法。
你如何推斷'漿果C'?不應該是'b'。 – umutto
@umutto是正確的 - 我將編輯問題 –