I need to create another column in df1 that will tell me a count of occurrences. Note, that another dataframe does not have exact match but does contain the values.
df1:
user1
user2
user3
user4
user5
df2:
user1,user2
user2, user1
user1, user5
user4,user5
I tried:
df1['Newcount'] = df1['df1:'].map(df2['df2:'].value_counts())
But this counts exact matches.
The desired output should be:
user1 3
user2 2
user3 0
user4 1
user5 2
Does this work: