作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将下面 DataFrame 中列的值转换为键值对字典,如 {"a": 29, "b": 1042, "c": 2928, "d": 4492}
event_type count
0 a 29
1 b 1042
2 c 2928
3 d 4492
最佳答案
创建Series
并转换为dict
:
d = df.set_index('event_type')['count'].to_dict()
print (d)
{'a': 29, 'b': 1042, 'c': 2928, 'd': 4492}
关于python - 如何将两列值转换为键值对字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60339573/
我是一名优秀的程序员,十分优秀!