I have two dataframes: df1:
id name city age found_in_df2
2 john ny 20
4 maria lima 9
9 susan cana 17
df2:
comment question response
i'm john are you there yes, i am
hello! jajajajaja go ahead!
please, go on hello susan no, i don't
maria i'm 9 years sure
I want to find values from column called 'name' from df1 that exist in any column in df2 (this value could be in any column and even inside a phrase). If the value is found, so I want to write 'yes' in column 'found_in_df2' of df1. Someone could help me with that?