簡體   English   中英

如果ID存在於其他數據幀中,則Python Pandas數據幀會在新列中添加“1”

[英]Python Pandas dataframe add “1” in new column if ID exists in other dataframe

我有兩個帶有客戶ID的數據框(標記為“C_ID”)以及一年的訪問次數。

如果客戶也在2009年購物,我想在我的2010數據框中添加一列。所以我需要創建一個循環來檢查2010年的C_ID是否存在於2009年,添加1,否則為0。

我使用此代碼並沒有工作:(沒有錯誤消息,沒有任何反應)

for row in df_2010.iterrows():
    #check if C_ID exists in the other dataframe
    check = df_2009[(df_2009['C_ID'] == row['C_ID'])]

    if check.empty:
        #ID not exist in 2009 file, add 0 in new column
        row['shopped2009'] = 0

    else:
        #ID exists in 2009 file, add 1 into same column
        row['shopped2009'] = 1

你可以使用dataframe.isin()

% timeit df_2010['new'] = np.where(df_2010['C_ID'].isin(df_2009['C_ID']), 1, 0)

最佳3:每循環384μs

正如@Kris建議的那樣

%timeit df_2010['new'] = (df_2010['C_ID'].isin(df_2009['C_ID'])).astype(int)

最佳3:每循環584μs

要么

df_2010['new'] = df_2010['C_ID'].isin(df_2009['C_ID'])

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM