说我有一个映射:
mapping = {
'cat': 'purrfect',
'dog': 'too much work',
'fish': 'meh'
}
和dataframe
:
animal name description
0 cat sparkles NaN
1 dog rufus NaN
2 fish mr. blub NaN
我想使用description
列和animal
dict以编程方式填写mapping
列作为输入:
def describe_pet(animal,mapping):
return mapping[animal]
当我尝试使用pandas apply()
函数时:
df['description'].apply(describe_pet,args=(df['animal'],mapping))
我收到以下错误:
TypeError: describe_pet() takes exactly 2 arguments (3 given)
似乎使用apply()
将一个参数传递给函数是微不足道的。我怎么能用两个参数来做呢?
答案 0 :(得分:5)
您可以使用map
方法执行此操作,而无需编写函数或完全使用apply
:
df['description'] = df.animal.map(mapping)
答案 1 :(得分:2)