如何将包含iterables作为项目的字典转换为数据帧

时间:2018-01-25 15:27:38

标签: python pandas dictionary dataframe

我有一本字典d

d=dict()
d['a']=2
d['b']=3
d['c']=list([1,5,7])

如果我尝试使用

转换它
 pd.DataFrame.from_dict(d)

然后我得到

df=
'a'     'b'     'c'
2       3        1 
2       3        5
2       3        7

虽然我想要:

df=
'a'     'b'     'c'
2       3        [1,5,7]

如何获得此行为?

1 个答案:

答案 0 :(得分:2)

试试这个:

df = pd.DataFrame.from_dict(d, orient='index').T