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

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

熊貓:使用另一列作為源替換值

熊貓:使用另一列作為源替換值

我有一個(gè)像這樣的數(shù)據(jù)框:Source    | Description  |Incomes   | Tax 12       |Incomes   | Payment      |Incomes   | Check 152    |Incomes   | Incoming 21  |Incomes   | Receiving    |Payments  | Tax          |Payments  | Incoming 7   |Payments  | Receiving 12 |Payments  | Check        |Payments  | Incoming     |首先,我替換所有包含IncomingorCheck和using的內(nèi)容:IncomesCheckdf.locSource    | Description  |Incomes   | Incomes      |Incomes   | Payment      |Incomes   | Checks       |Incomes   | Incomes      |Incomes   | Receiving    |Payments  | Receiving 2  |Payments  | Incomes      |Payments  | Receiving 12 |Payments  | Checks       |Payments  | Incomes      |現(xiàn)在我想用相應(yīng)的值替換與列不匹配Incomes或 不匹配的所有內(nèi)容,如下所示:ChecksDesciptionSourceSource    | Description  |Incomes   | Incomes      |Incomes   | Incomes      |Incomes   | Checks       |Incomes   | Incomes      |Incomes   | Incomes      |Payments  | Payments     |Payments  | Incomes      |Payments  | Payments     |Payments  | Checks       |Payments  | Incomes      |我該怎么做?我已經(jīng)嘗試df.loc[df['Description'].str.contains('Incomes|Checks')== False] == df['Source']過但沒有成功。提前致謝
查看完整描述

1 回答

?
慕的地8271018

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

用這個(gè),


mask = df['Description'].str.contains("Incoming|Check")


df.loc[~mask, "Description"] = df.loc[~mask, "Source"]


df['Description'] = df['Description'].str.replace("Incoming.*", "Incomes") \

    .str.replace("Check.*", "Checks")


查看完整回答
反對(duì) 回復(fù) 2022-12-06
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽
慕課專欄
更多

添加回答

舉報(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)