I want to remove duplicate values based upon matches in 2 columns in a dataframe, v2 & v4 must match between rows to be removed.
v2
v4
This will give you the desired result:
df [!duplicated(df[c(1,4)]),]