Why is `[` better than `subset`?

This question was answered in well in the comments by @James, pointing to an excellent explanation by Hadley Wickham of the dangers of subset (and functions like it) [here]. Go read it!

It’s a somewhat long read, so it may be helpful to record here the example that Hadley uses that most directly addresses the question of “what can go wrong?”:

Hadley suggests the following example: suppose we want to subset and then reorder a data frame using the following functions:

scramble <- function(x) x[sample(nrow(x)), ]

subscramble <- function(x, condition) {
  scramble(subset(x, condition))
}

subscramble(mtcars, cyl == 4)

This returns the error:

Error in eval(expr, envir, enclos) : object ‘cyl’ not found

because R no longer “knows” where to find the object called ‘cyl’. He also points out the truly bizarre stuff that can happen if by chance there is an object called ‘cyl’ in the global environment:

cyl <- 4
subscramble(mtcars, cyl == 4)

cyl <- sample(10, 100, rep = T)
subscramble(mtcars, cyl == 4)

(Run them and see for yourself, it’s pretty crazy.)

Leave a Comment