标签: pandas machine-learning data-science
我有一个熊猫数据框。我需要将其转换为图片中提供的字典。 df = pd.DataFrame({0: [1, 2], 1: [0.5, 0.75]}, index=['head', 'tail'])
df = pd.DataFrame({0: [1, 2], 1: [0.5, 0.75]}, index=['head', 'tail'])
结果字典应包含 索引作为键,行值作为字典值
示例:to_dict ['head'] 输出:array([1,0.5])
答案 0 :(得分:0)
尝试使用此功能:
df = df.to_dict()