I have two DFs with a different number of rows which share some of the same row names:
DF1 DF2
Col
Name1 Name1 A
Name3 Name2 B
Name4 Name3 C
Name7 Name4 D
Name5 E
Name6 F
Name7 G
but I would like to make a column in DF1, which has a smaller number of rows from the Col in DF2 based upon matching row names shared by both DFs:
DF1 DF2
Col Col
Name1 A Name1 A
Name3 C Name2 B
Name4 D Name3 C
Name7 G Name4 D
Name5 E
Name6 F
Name7 G