Let's say that I have a df1 like (there are more columns but only this one is relatable):
A
a1
a2
a3
and a df2 like:
A
a1
a3
a4
a7
The case is that df2 contains in column A (column names are the same both in df1 and df2) some of the values in df1, but not all of them. Now, I'd like to add a column "Found in df2?" to a df1, representing if the value was found or not. Example:
df1
A Found in df2?
a1 Y
a2 N
a3 Y
I've tried np.where and some merging magic but couldn't wrap my head around this.