Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a data frame that relates bottle numbers to their volumes (key in the example below). I want to write a function that will take any list of bottle numbers (samp) and return a list of the bottle volumes while maintaining the bottle number order in samp.

The function below correctly matches the bottle numbers and volumes but sorts the output by ascending bottle number.

How can I maintain the order of samp with merge? Setting sort=FALSE results in an "unspecified order".

Example

samp <- c(9, 1, 4, 1)
num <- 1:10
vol <- sample(50:100, 10)
key <- data.frame(num, vol)
matchFun <- function(samp, key)
  {
    out <- merge(as.data.frame(samp), key, by.x="samp", by.y="num")
    return(out$vol)
  }
share|improve this question
1  
Seriously? It's in the manual. Read ?merge; sort=TRUE is the default... – Joshua Ulrich Jun 21 '12 at 18:36
1  
that doesn't seem to maintain the original order of samp for some reason though... – KennyPeanuts Jun 21 '12 at 18:54
4  
Well crap, I apologize. sort=FALSE returns the rows in an "unspecified order". Looks like I need to RTFM. ;-) Bring on the "great comment" up-votes. I like my crow well-done. – Joshua Ulrich Jun 21 '12 at 18:58
Thanks for the edits! That is a much clearer description of my problem. – KennyPeanuts Jun 21 '12 at 19:17

3 Answers

up vote 2 down vote accepted

You can do this with match and subsetting key by the result:

bottles <- key[match(samp, key$num),]
# rownames are odd because they must be unique, clean them up
rownames(bottles) <- seq(NROW(bottles))
share|improve this answer

There is a sort parameter to merge which is TRUE by default. Set this to FALSE:

merge(as.data.frame(samp), key, by.x = "samp", by.y = "num", sort=FALSE)
#-----
  samp vol
1    9  52
2    1  69
3    1  69
4    4  64

See ?merge for details.

share|improve this answer
1  
actually that is still changing the order of samp for some reason. the original order is 9, 1, 4, 1 but with sort = F, it is listing as 9, 1, 1, 4. – KennyPeanuts Jun 21 '12 at 18:48
@DQdlM - ahh interesting quirk you pointed out re: "unspecified order". I always assumed it was the original order of the data...guess that shows you want ASSuming things does. Looks like Joshua got you down the right path though. – Chase Jun 21 '12 at 20:24

join in plyr is great for this...

samp <- c(9, 1, 4, 1)
num <- 1:10
vol <- sample(50:100, 10)
key <- data.frame(num, vol)
samp<-as.data.frame(samp)
names(samp)<-"num"
library("plyr")
join(key,samp,type="right")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.