This a new concept to me in pandas. I am very familiar with vlookup in Excel, so here is what I'm trying to do:
df1=                      df2=
FUR  Total   otherT          FUR   Total
123    3     no value        123    8
345   -2     no value        345    3
234    6     no value        234   -1
so all I want to do is take the total column for df2 and put it in the empty column in df1 named OtherT. 'no value' just indicates that the field is blank.
I have tried using merge
pd.merge(df1, df2, how = 'left', on = 'FUR')
I have also tried using join
df1.join(df2, on = 'FUR', how  = 'left')
 
     
    