I have two data frames of unequal number of rows:
df1
Label   Country    Year
NU      Germany    1999
BU      Italy      1945
LU      France     2009
KM      Sweden     1998
NU      Germany    1999
and
df2
Make     Label     
X1       NU
X2       BU
X3       NU
X4       NU
X5       KM
What I would like to do is match on "Label" and end up with the following:
Make   Label    Country     Year
X1       NU     Germany     1999
X2       BU     Italy       1945
X3       NU     Germany     1999
X4       NU     Germany     1999
X5       KM     Sweden      1998
 
    