Hello all my df1 looks like this
PID        Sex
TNGP0001    M
TNGP1234    M
TNGP4567    F
123         F
567         M
And my df2 looks like this
PID        V1
TNGP0001       54
TNGP1234       52
123            57
567            58
I want to merge df1 with df2 and want output like
Expected Results:
PID        Sex  V1
TNGP0001    M   54
TNGP1234    M   52
123         F   57
567         M   58
Thanks in adavance.
 
    