I have two dataframes:
DF ONE:
ID A B C
1 x y z
1 x y z
2 x y z
2 x y z
2 x y z
3 x y z
DF TWO:
ID D E F
1 a b c1
2 a b c2
3 a b c3
I want to take column E
for example from DF TWO, and put it on DF ONE, if the ID is the same, so after I will get this output:
ID A B C F
1 x y z c1
1 x y z c1
2 x y z c2
2 x y z c2
2 x y z c2
3 x y z c3
thank you for your help