So I have a column which looks like this.
name col1 col2 col3
company1 Banking Finance B&F
company2 Utilities Utilities NaN
company3 Transportation Pipeline Transportation Utilities
company4 Consulting Tech Insurance
Is there a way where I can do a fuzzy match between col1 , col2 and col3 and assign a new column with the score. I am using fuzzywuzzy in pandas.
Output should look something like this
name col1 col2 col3 Score
company1 Banking Finance B&F 23
company2 Utilities Utilities NaN 71
company3 Transportation Pipeline Transportation Utilities 54
company4 Consulting Tech Insurance 2
(I just put in random values for the score so they are not accurate ) I couldn't find a question like this here , so if it exists please do let me know.
Thankyou