I have a problem where I need to keep unique rows but not have a repeated pair e.g. if I have a table with x1=c(1,2,3) and x2=c(2,1,3) only the first and third row will be kept. The row with (2,1) is thrown out because (1,2) already exists. Can anyone help?
Thanks!