Skip to content
Advertisement

Pandas .isin on column entries containing lists

I am trying to filter a dataframe using the isin() function by passing in a list and comparing with a dataframe column that also contains lists. This is an extension of the question below:

How to implement ‘in’ and ‘not in’ for Pandas dataframe

For example, instead of having one country in each row, now each row contains a list of countries.

JavaScript

And to filter, I set two separate lists:

JavaScript

The intended results should be the same because both rows 0 and 1 contain UK and/or US

JavaScript

However Python threw the following error

JavaScript

Advertisement

Answer

One possible solutions with sets and issubset or isdisjoint with map:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement