As someone who is super new in merge/append on Python, I am trying to merge two different DF together.
- DF1 has 2 columns with Text and ID columns and 100 rows
- DF2 has 3 columns with Text, ID, and Match columns and has 20 rows
My goal is to combine the two DFs together so the "Match" column from DF2 can be merged into DF1. The Match column is all "True" value, so when it gets merged over the other 80 rows on DF1 can be NaN and I can fix it later.
Thank you to everyone for the help and support!