Skip to content
Advertisement

Find if words from one sentence are found in corresponding row of another column also containing sentences (Pandas)

I have dataframe that looks like this:

JavaScript

and I have this code that works as a solution but it takes forever on larger datasets and I know there has to be an easier way to solve it so just looking to see if anyone knows of a more concise/elegant way to do find a count of matching words between corresponding rows of both columns. Thanks

JavaScript

the resulting dataframe test_ looks like this

enter image description here

Advertisement

Answer

This solves your query.

JavaScript

Output:

JavaScript
Advertisement