gpt4 book ai didi

python Pandas : replace cell with value from the dictionary

转载 作者:行者123 更新时间:2023-12-01 06:28:52 24 4
gpt4 key购买 nike

假设如下pandas表:

   A  B  C  D
1 10 11 12 abc
2 13 14 15 abc
3 16 17 18 def
4 19 20 21 def
5 22 23 24 abc
...

如何用字典中的值替换 D 列中的元素?例如:

my_dict = { "abc": "test1", "def": "test2", "www": "test3", "aabb": "test4"}

然后表格将如下所示:

   A  B  C  D
1 10 11 12 test1
2 13 14 15 test1
3 16 17 18 test2
4 19 20 21 test2
5 22 23 24 test1
...

最佳答案

尝试使用 map :

df['D'] = df['D'].map(my_dict)

关于 python Pandas : replace cell with value from the dictionary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59997501/

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