search for: mergero

Displaying 1 result from an estimated 1 matches for "mergero".

Did you mean: merger
2010 Nov 08
3
Help with getting ?match to not sort
Hello all, I think I am missing something about the sorting parameter in the "match" command/ Here is an example: a1 <- data.frame(name = c("D", "B", "C", "A", "A", "C")) a2 <- data.frame(name = c("A", "B", "C", "D"), num = 1:4) a1 a2 merge(a1, a2, sort = F, by.x = T) The