我有一本字典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]
如何获得此行为?
答案 0 :(得分:2)
试试这个:
df = pd.DataFrame.from_dict(d, orient='index').T