简体   繁体   中英

How to match more than 2 side by side

I'm currently using python and having trouble finding a code. I have 2 data frames that I would like to match more than 2 numbers that match side by side. For example, I would like to lookup the numbers in df1 and find more than 2 numbers match side by side in df2.

import pandas as pd 
cols = ['Num1','Num2','Num3','Num4','Num5','Num6']
df1 = pd.DataFrame([[2,4,6,8,9,10]], columns=cols)

df2 = pd.DataFrame([[1,1,2,4,5,6,8],
           [2,5,6,20,22,23,34],
           [3,8,12,13,34,45,46],
           [4,9,10,14,29,32,33],
           [5,1,22,13,23,33,35],
           [6,1,6,7,8,9,10],
           [7,0,2,3,5,6,8]], 
           columns = ['Id','Num1','Num2','Num3','Num4','Num5','Num6'])

I would like my results to be something like this.

results = pd.DataFrame([[6,1,6,7,8,9,10]],             
       columns = ['Id', 'Num1','Num2','Num3','Num4','Num5','Num6']) 

You can see Id 6 or index 6 has 8,9,10. More than 2 number match side by side.

i use this and it working !

list1=df2[['Num1','Num2','Num3','Num4','Num5','Num6']].values.tolist()
list2=df1[['Num1','Num2','Num3','Num4','Num5','Num6']].values.tolist()
l=[]
for i in range(6):
    if list1[i][i]==list2[0][i]:
        l.append(i)
resultt=pd.DataFrame()
resultt=resultt.append(df2.loc[int(l[0])],ignore_index=True) 

out:

    Id  Num1  Num2  Num3  Num4  Num5  Num6
0  6.0   1.0   6.0   7.0   8.0   9.0  10.0

i will working on it aleter to add condition of >2 it working because one row how has match the condition, but if is more than one it doasn't working

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM