I got a problems that bugs me for some time… hopefully anybody here can help me.

I got the following data frame

f <- c('a','a','b','b','b','c','d','d','d','d')
v1 <- c(1.3,10,2,10,10,1.1,10,3.1,10,10)
v2 <- c(1:10)
df <- data.frame(f,v1,v2)

f is a factor; v1 and v2 are values. For each level of f, I want only want to keep one row: the one that has the lowest value of v1 in this factor level.

f   v1  v2
a   1.3 1
b   2   3
c   1.1 6
d   3.1 8

I tried various things with aggregate, ddply, by, tapply… but nothing seems to work. For any suggestions, I would be very thankful.

link|improve this question

feedback

6 Answers

up vote 13 down vote accepted

Using DWin's solution, tapply can be avoided using ave.

df[ df$v1 == ave(df$v1, df$f, FUN=min), ]

This gives another speed-up, as shown below. Mind you, this is also dependent on the number of levels. I give this as I notice that ave is far too often forgotten about, although it is one of the more powerful functions in R.

f <- rep(letters[1:20],10000)
v1 <- rnorm(20*10000)
v2 <- 1:(20*10000)
df <- data.frame(f,v1,v2)

> system.time(df[ df$v1 == ave(df$v1, df$f, FUN=min), ])
   user  system elapsed 
   0.05    0.00    0.05 

> system.time(df[ df$v1 %in% tapply(df$v1, df$f, min), ])
   user  system elapsed 
   0.25    0.03    0.29 

> system.time(lapply(split(df, df$f), FUN = function(x) {
+             vec <- which(x[3] == min(x[3]))
+             return(x[vec, ])
+         })
+  .... [TRUNCATED] 
   user  system elapsed 
   0.56    0.00    0.58 

> system.time(df[tapply(1:nrow(df),df$f,function(i) i[which.min(df$v1[i])]),]
+ )
   user  system elapsed 
   0.17    0.00    0.19 

> system.time( ddply(df, .var = "f", .fun = function(x) {
+     return(subset(x, v1 %in% min(v1)))
+     }
+ )
+ )
   user  system elapsed 
   0.28    0.00    0.28 
link|improve this answer
1  
+1 for a method that actually works. – hadley Nov 16 '10 at 2:52
This is clearly the best answer! Great that you added the timings too. – Eduardo Leoni Nov 16 '10 at 2:54
Thanks for that answer and the timings. How would I adapt that to more than one factor? Let's say I have f1 and f2 as factors, and I want the min-value for each combination... I tried both c() and list(), but it didn't work. – donodarazao Nov 16 '10 at 4:08
@donodarazao : see ?ave : ave(x,factor1,factor2,factor3,factor4,...,FUN=min) – Joris Meys Nov 16 '10 at 4:25
@hadley: thx, I didn't even realize I corrected a tricky bug. – Joris Meys Nov 16 '10 at 4:26
show 1 more comment
feedback

With plyr, I'd use:

ddply(df, .var = "f", .fun = function(x) {
    return(subset(x, v1 %in% min(v1)))
    }
)

Give that a try and see if it returns what you want.

link|improve this answer
5  
Or more simply: ddply(df, "f", subset, v1 == min(v1)) – hadley Nov 16 '10 at 2:49
feedback

Another tapply solution, with no unnecessary scanning of vector with %in%:

df[tapply(1:nrow(df),df$f,function(i) i[which.min(df$v1[i])]),]

EDIT: This will left only first row in case of a tie.

EDIT2: Impressed by ave, I've made additional improvements:

df[sapply(split(1:nrow(df),df$f),function(x) x[which.min(df$v1[x])]),]

On my machine (using Joris' benchmark data):

> system.time(df[ df$v1 == ave(df$v1, df$f, FUN=min), ])
   user  system elapsed
  0.022   0.000   0.021
> system.time(df[sapply(split(1:nrow(df),df$f),function(x) x[which.min(df$v1[x])]),])
   user  system elapsed
  0.006   0.000   0.007
link|improve this answer
Well, mbq, I voted yours up. And like Matt with mine, I had to work yours through to "see" its inner workings. – DWin Nov 16 '10 at 0:28
@DWin Sorry for this %in% remark, I maybe tend to overestimate efficiency :| And I agree that all solutions are pretty complicated; by solution is IMO quite readable but the result is awful (-; – mbq Nov 16 '10 at 0:41
feedback

I'm sorry, my thinking power is depleted, and this ugly solution is all I can come up with at almost 1 am.

lapply(split(df, df$f), FUN = function(x) {
            vec <- which(x[3] == min(x[3]))
            return(x[vec, ])
        })
link|improve this answer
1  
That which is redundant. – hadley Nov 16 '10 at 2:51
feedback

Here's a tapply solution;

> df[ df$v1 %in% tapply(df$v1, df$f, min), ]

  f  v1 v2
1 a 1.3  1
3 b 2.0  3
6 c 1.1  6
8 d 3.1  8

In your example it only picks out one per group, but if there were ties this method would show them all. (As would Parker's and Luštrik's I suspect.)

link|improve this answer
Excellent point regarding ties. Nice function, too - took me a few reads and a glance at ?tapply to figure out what was going on. – Matt Parker Nov 16 '10 at 0:13
Wow, amazing! The ddply-solution from Matt works, but took around 2 min in my real data frame (~10,000 rows). This solution gives the same result, but takes less than a 1 second. Pretty elegant, thanks! – donodarazao Nov 16 '10 at 0:29
3  
Something is going wrong if ddply takes 2 minutes on 10,000 observations. Plus this method is not always going to return the correct results - think about the case where 2 is the lowest value for one group and the second lowest for another group. It's just luck that it works for this example. – hadley Nov 16 '10 at 2:51
Maybe it's because there are 7,700 factor levels in the 10,000 observations? I tried it again with your ddply-solution and it really takes that long... – donodarazao Nov 16 '10 at 4:08
feedback

Another way is to use order and !duplicated, but you would only get the first on ties.

df2 <- df[order(df$f,df$v1),]
df2[!duplicated(df2$f),]

  f  v1 v2
1 a 1.3  1
3 b 2.0  3
6 c 1.1  6
8 d 3.1  8

Timings

f1<-function(){df2<-df[order(df$f,df$v1),]
df2[!duplicated(df2$f),]}

f2<-function(){df2<-df[order(df$v1),]
df2[!duplicated(df2$f),]}

f3<-function(){df[ df$v1 == ave(df$v1, df$f, FUN=min), ]}

library(rbenchmark)
> benchmark(f1(),f2(),f3())
  test replications elapsed relative user.self sys.self user.child sys.child
1 f1()          100   38.16 7.040590     36.66     1.48         NA        NA
2 f2()          100   20.54 3.789668     19.30     1.23         NA        NA
3 f3()          100    5.42 1.000000      4.96     0.46         NA        NA
link|improve this answer
Order over v1 is sufficient. Nice solution, how about timing? – Marek Nov 16 '10 at 16:06
@Marek Thanks, didn't think about not really needing to order on f. This seems to speed it up by about 2x, but its still a fair bit slower than Joris Meys' ave solution. – James Nov 16 '10 at 16:51
feedback

Your Answer

 
or
required, but never shown

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