gpt4 book ai didi

python - 我如何解决 'UserWarning: DataFrame columns are not unique, some columns will be omitted' ?

转载 作者:行者123 更新时间:2023-12-05 04:25:25 28 4
gpt4 key购买 nike

我有一个 2 列的数据框。我尝试使用 df2.set_index('pay').T.to_dict('list').

由于有重复的键,一些列被省略了。有什么方法可以解决此问题或替代方法吗?

<表类="s-表"><头>支付得分<正文>50017004100057003

我想实现这个字典。

{'0': [500, 1], '1': [700, 4], '2': [1000, 5], '3' [700, 3]}

最佳答案

IIUC 使用:

d = df2.T.to_dict('list')
print (d)
{0: [500, 1], 1: [700, 4], 2: [1000, 5], 3: [700, 3]}

关于python - 我如何解决 'UserWarning: DataFrame columns are not unique, some columns will be omitted' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73275978/

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