gpt4 book ai didi

python - 删除 Pandas 数据框列中的多个子字符串

转载 作者:太空狗 更新时间:2023-10-30 02:52:36 26 4
gpt4 key购买 nike

我在 pandas 数据框中有一列成分。我需要删除除成分名称以外的所有内容(例如:1/3 杯腰果 > 腰果)。

输入

    recipe_name                                ingredient
0 Truvani Chocolate Turmeric Caramel Cups ⅓ cup cashews
1 Truvani Chocolate Turmeric Caramel Cups 4 dates
2 Truvani Chocolate Turmeric Caramel Cups 1 tablespoon almond butter
3 Truvani Chocolate Turmeric Caramel Cups 3 tablespoons coconut milk
4 Truvani Chocolate Turmeric Caramel Cups ½ teaspoon vanilla extract

预期输出

    recipe_name                                ingredient
0 Truvani Chocolate Turmeric Caramel Cups cashews
1 Truvani Chocolate Turmeric Caramel Cups dates
2 Truvani Chocolate Turmeric Caramel Cups almond butter
3 Truvani Chocolate Turmeric Caramel Cups coconut milk
4 Truvani Chocolate Turmeric Caramel Cups vanilla extract

我试过使用字典,将常用词映射到空字符串,如下所示:

remove_list ={'\d+': '', 'ounces': '', 'ounce': '', 'tablespoons': '', 'tablespoon': '', 'teaspoons': '', 'teaspoon': '', 'cup': '', 'cups': ''}
column = df['ingredient']
column.apply(lambda column: [remove_list[y] if y in remove_list else y for y in column])

这根本没有改变数据。

我也尝试过使用正则表达式:

df['ingredients'] = re.sub(r'|'.join(map(re.escape, remove_list)), '', df['ingredients'])

但这只会给出一个错误提示“TypeError: expected string or buffer.”

我是 Python 的新手,所以我认为使用正则表达式是可行的,我只是不确定该怎么做。

最佳答案

既然你想用相同的字符替换所有的东西,就把它们放在一个列表中。

l = ['\d+', '[^\x00-\x80]+', 'ounces', 'ounce', 'tablespoons', 
'tablespoon', 'teaspoons', 'teaspoon', 'cup', 'cups']

然后使用一个replace,加入所有内容。

df.ingredient.str.replace('|'.join(l), '', regex=True).str.strip()
# Safer to only replace stand-alone words. strip not needed
#df.ingredient.str.replace('|'.join([x + '\s' for x in l]), '', regex=True)

输出:

0            cashews
1 dates
2 almond butter
3 coconut milk
4 vanilla extract
Name: ingredient, dtype: object

我将 '[^\x00-\x80]+' 添加到列表中以删除那些小数字符,并且 .str.strip 删除了任何多余的或前导的字符替换后的空格。

关于python - 删除 Pandas 数据框列中的多个子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52726935/

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