python:DataFrame转dict字典
Posted 林三岁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:DataFrame转dict字典相关的知识,希望对你有一定的参考价值。
背景:将商品id以及商品类别作为字典的键值映射,生成字典,原为DataFrame
# 创建一个DataFrame # 列值类型均为int型 import pandas as pd item = pd.DataFrame({\'item_id\': [100120, 10024504, 1055460], \'item_category\': [87974, 975646, 87974]}, index=[0, 1, 2]) item
# 将item_id,item_category两列数值转为dict字典 # 注意:同种商品类别肯定会对应不同商品,即一对多,进行字典映射,一定要是item_id作为键,item_category作为值 # 由于原始数据为int类型,结果将是字符串之间的映射,因此需要对列值进行数据类型转换 item.item_id = (item[\'item_id\']).astype(str) item.item_category = (item[\'item_category\']).astype(str) item_dict = item.set_index(\'item_id\')[\'item_category\'].to_dict() item_dict
以上是关于python:DataFrame转dict字典的主要内容,如果未能解决你的问题,请参考以下文章
python 中各类型介绍及相互转换 - list, array, tensor, dict, tuple, DataFrame
从冗长的字典生成时,Pandas DataFrame.from_dict() 性能不佳