gpt4 book ai didi

python - 从数组长度不等的字典中创建数据框

转载 作者:行者123 更新时间:2023-12-03 20:02:35 24 4
gpt4 key购买 nike

我有一本字典 - {'Car': ['a', 'b'], 'Bike': ['q', 'w', 'e']}我想生成这样的数据框 -

S.no. | vehicle | model
1 | Car | a
2 | Car | b
2 | Bike | q
2 | Bike | w
2 | Bike | e
我试过 df = pd.DataFrame(vDict)但我得到 ValueError: arrays must all be same length错误。请帮忙?

最佳答案

用:

pd.Series(dct, name='model').explode().rename_axis(index='vehicle').reset_index()

关于python - 从数组长度不等的字典中创建数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64900636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com