gpt4 book ai didi

python - 将相同键的字典加入 Pandas 的数据框中

转载 作者:太空狗 更新时间:2023-10-29 21:00:55 24 4
gpt4 key购买 nike

如何从两个或多个具有公共(public)键的字典中创建一个 pandas DataFrame?即转换

d1 = {'a': 1}
d2 = {'a': 3}
...

进入包含列 ['d1', 'd2', ...]、索引为 “a” 的行以及由相应字典确定的值的数据帧?

最佳答案

import pandas as pd
d1 = {'a': 1, 'b':2}
d2 = {'a': 3, 'b':5}

df = pd.DataFrame([d1, d2]).T
df.columns = ['d{}'.format(i) for i, col in enumerate(df, 1)]

产量

In [40]: df
Out[40]:
d1 d2
a 1 3
b 2 5

关于python - 将相同键的字典加入 Pandas 的数据框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25813529/

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