I have multiple dataframes(one for each city) with 'Name' column that represents organization names from that city.
How can I visualize the names that are common in every 2 cities and the names that are common for all cities so that it would be easy to understand?
Example:
df1 df2
Name Name
'Apollo' 'Kims'
'MedWorks' 'AIMs'
'Cradle' 'Apollo'
'Kims' 'Bronte Co'
'Collins' 'Cradle'
There are more than 10 values(names) common for each city. I am not sure if venn diagrams work with string values but even if they do, it will not fit all the data in a good format.
Tried this as suggested but I am getting:
TypeError: unsupported operand type(s) for -: 'str' and 'str'