如何将数据框转换为字典 [重复]
Posted
技术标签:
【中文标题】如何将数据框转换为字典 [重复]【英文标题】:How to convert a dataframe to a dict [duplicate] 【发布时间】:2021-06-22 00:22:46 【问题描述】:我有以下数据框:
Factors low high
0 amount 2.5 4
1 grind_size 8 10
2 brew_time 3.5 4.5
3 grind_type burr blade
4 beans light dark
我想制作以下字典:
lows = 'amount' : 2.5,
'grind_size' : 8,
'brew_time': 3.5,
'grind_type': 'burr',
'beans': 'light'
我怎样才能做到这一点?
【问题讨论】:
这能回答你的问题吗? Convert a Pandas DataFrame to a dictionary 【参考方案1】:你可以得到这个字典
dict(zip(df['Factors'], df['low']))
或
df.set_index('Factors')['low'].to_dict()
【讨论】:
以上是关于如何将数据框转换为字典 [重复]的主要内容,如果未能解决你的问题,请参考以下文章