第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

循環(huán)數(shù)據(jù)框的每一行,并根據(jù)條件向數(shù)據(jù)框添加元素

循環(huán)數(shù)據(jù)框的每一行,并根據(jù)條件向數(shù)據(jù)框添加元素

慕碼人8056858 2023-09-26 16:45:12
我想循環(huán)數(shù)據(jù)框的每一行,如果列和列表中的字符串之間存在匹配,我會(huì)在新列中添加一個(gè)元素。在此示例中,我想添加一個(gè)新列來對(duì)產(chǎn)品進(jìn)行分類。因此,如果該列的一行與其中一個(gè)列表匹配,則類別可以是“飲料”或“食品”,如果沒有匹配,則類別將為其他。list_drinks={'Water','Juice','Tea'}list_food={'Apple','Orange'}data = {'Price':  ['1', '5','3'], 'Product': ['Juice','book', Pen]}for (i,j) in itertools.zip_longest(list_drinks,list_food):    for index in data.index:         if(j in data.loc[index,'product']):            data["Category"] = "Food"        elif(i in data.loc[index,'product']):            data["Category"] ="drinks"        else:            data["Category"]="Other"           輸出將是:Price  Product Category 1      Juice    drinks 5      book     Other 3      Pen      Other我的問題主要是我不知道如何匹配列表和行之間的模式。我也嘗試過: str.contains但沒有成功。
查看完整描述

2 回答

?
精慕HU

TA貢獻(xiàn)1845條經(jīng)驗(yàn) 獲得超8個(gè)贊

無需循環(huán)。您可以使用.isin()withnp.select()根據(jù)條件返回結(jié)果。見下面的代碼:


import pandas as pd

import numpy as np

list_drinks=['Water','Juice','Tea']

list_food=['Apple','Orange']

data = {'Price':  ['1', '5','3'],

    'Product': ['Juice','book','Pen']}

df = pd.DataFrame(data)

df['Category'] = np.select([(df['Product'].isin(list_drinks)),

               (df['Product'].isin(list_food))],

              ['drinks',

              'food'], 'Other')

df

Out[1]: 

  Price Product Category

0     1   Juice   drinks

1     5    book    Other

2     3     Pen    Other

下面,我將代碼分解為更詳細(xì)的內(nèi)容,以便您可以了解它是如何工作的。我也根據(jù)你的評(píng)論略有改變。我使用列表理解和 來檢查列表中的值是否位于數(shù)據(jù)幀中的值的子字符串中in。為了提高匹配率,我還將 as 全部小寫與 進(jìn)行比較.lower():


import pandas as pd

import numpy as np

list_drinks=['Water','Juice','Tea']

list_food=['Apple','Orange']

data = {'Price':  ['1', '5','3'],

    'Product': ['green Juice','book','oRange you gonna say banana']}

df = pd.DataFrame(data)

c1 = (df['Product'].apply(lambda x: len([y for y in list_drinks if y.lower() in x.lower()]) > 0))

c2 = (df['Product'].apply(lambda x: len([y for y in list_food if y.lower() in x.lower()]) > 0))

r1 = 'drinks'

r2 = 'food'


conditions = [c1,c2]

results= [r1,r2]


df['Category'] = np.select(conditions, results, 'Other')

df

Out[1]: 

  Price                      Product Category

0     1                  green Juice   drinks

1     5                         book    Other

2     3  oRange you gonna say banana     food



查看完整回答
反對(duì) 回復(fù) 2023-09-26
?
鳳凰求蠱

TA貢獻(xiàn)1825條經(jīng)驗(yàn) 獲得超4個(gè)贊

這是一個(gè)替代方案 -


import itertools

import pandas as pd


list_drinks={'Water','Juice','Tea'}

list_food={'Apple','Orange'}

data = pd.DataFrame({'Price':  ['1', '5','3'], 'Product': ['Juice','book', 'Pen']})

category = list()

for prod in data['Product']: 

    if prod in list_food:

        category.append("Food")

    elif prod in list_drinks:

        category.append("drinks")

    else:

        category.append("Other")

data['Category']= category

print(data)

輸出-


Price  Product Category

 1      Juice    drinks

 5      book     Other

 3      Pen      Other


查看完整回答
反對(duì) 回復(fù) 2023-09-26
  • 2 回答
  • 0 關(guān)注
  • 115 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)