I'm in a situation like this: I have a data.frame that looks like the following:
Col1 Col2 a 3.4 a 3.4 d 3.2 c 3.2
I would like the following output:
Col1 Col2 a 3.4 d 3.2 c 3.2
in other words the value "a" in "Col1" will be considered once since it is replicated exactly, otherwise even if the value of "d" and "c" is the same as reported in "Col2" it will be considered twice because they are different entities ("d" is different from "c")
Can anyone help me please?