Ich habe Datenrahmen mit jeder Zeile mit einem Listenwert.
id list_of_value
0 ['a','b','c']
1 ['d','b','c']
2 ['a','b','c']
3 ['a','b','c']
Ich muss eine Punktzahl mit einer Zeile und gegen alle anderen Zeilen berechnen
Zum Beispiel:
Step 1: Take value of id 0: ['a','b','c'],
Step 2: find the intersection between id 0 and id 1 ,
resultant = ['b','c']
Step 3: Score Calculation => resultant.size / id.size
Wiederholen Sie Schritt 2,3 zwischen ID 0 und ID 1,2,3, ähnlich für alle IDs.
und einen N x N Datenrahmen erstellen; wie das:
- 0 1 2 3
0 1 0.6 1 1
1 1 1 1 1
2 1 1 1 1
3 1 1 1 1
Im Moment hat mein Code nur eine for-Schleife:
def scoreCalc(x,queryTData):
#mathematical calculation
commonTData = np.intersect1d(np.array(x),queryTData)
return commonTData.size/queryTData.size
ids = list(df['feed_id'])
dfSim = pd.DataFrame()
for indexQFID in range(len(ids)):
queryTData = np.array(df.loc[df['id'] == ids[indexQFID]]['list_of_value'].values.tolist())
dfSim[segmentDfFeedIds[indexQFID]] = segmentDf['list_of_value'].apply(scoreCalc,args=(queryTData,))
Gibt es einen besseren Weg, dies zu tun? Kann ich einfach eine Apply-Funktion schreiben, anstatt eine For-Loop-Iteration durchzuführen? kann ich es schneller machen?
list_of_value
?
list_of_value
. Ich meine insgesamt über alle Zeilen hinweg.