I am using R and need a hint to solve my problem:
I have two lists and I want to compare the values of the first row of list "a" with the values of the first row of list "b". If the element exists, I want to write the value of the second row of list "b" into the second row of list "a".
So, here is list "a":
X.WORD    FREQ
abase     0
abased    0
abasing   0
abashs    0
here list "b"
V1        V2
arthur    11
abased    29
turtle    9
abash     2
The result should be
X.WORD    FREQ
abase     0
abased    29
abasing   0
abashs    0
Thanks for your answers
 
     
    