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

When I need to filter a data.frame, i.e., extract rows that meet certain conditions, I prefer to use the subset function:

subset(airquality, Month == 8 & Temp > 90)

rather than the [ function:

airquality[airquality$Month == 8 & airquality$Temp > 90, ]

There are two main reasons for my preference:

  1. I find the code reads better, from left to right. Even people who know nothing about R could tell what the subset statement above is doing.
  2. Because columns can be referred to as variables in the select expression, I can save a few keystrokes. In my example above, I only had to type airquality once with subset, but three times with [.

So I was living happy, using subset everywhere because it is shorter and reads better, even advocating its beauty to my fellow R coders. But yesterday my world broke apart. While reading the subset documentation, I notice this section:

Warning

This is a convenience function intended for use interactively. For programming it is better to use the standard subsetting functions like [, and in particular the non-standard evaluation of argument subset can have unanticipated consequences.

Could someone help clarify what the authors mean?

First, what do they mean by "for use interactively"? I know what an interactive session is, as opposed to a script run in BATCH mode but I don't see what difference it should make.

Then, could you please explain "the non-standard evaluation of argument subset" and why it is dangerous, maybe provide an example?

Thank you!

share|improve this question
Um, the foo[...) syntax will throw up any simple texteditor that does paren-balancing. – Johannes Schaub - litb Mar 25 '12 at 12:42
Thanks @JohannesSchaub-litb, I've edited. – flodel Mar 25 '12 at 12:58
5  
github.com/hadley/devtools/wiki/Evaluation is worth a read – James Mar 25 '12 at 13:09
1  
I've looked at that warning many times and worried about what on Earth it can mean. I'm glad you asked. I've now read Hadley's brilliant documentation and have now sworn off subset for programming forever. – Chris Beeley Mar 25 '12 at 17:48
2  
You might also have a look at Cirlces 8.2.31 and 8.2.32 of 'The R Inferno' burns-stat.com/pages/Tutor/R_inferno.pdf – Patrick Burns Mar 25 '12 at 18:25
show 5 more comments

1 Answer

up vote 46 down vote accepted

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.)

share|improve this answer
Nice summary @joran – James Mar 27 '12 at 7:29
The "Evaluation" link is broken. Perhaps this link is correct: github.com/hadley/devtools/wiki/Computing-on-the-language – krlmlr May 23 at 22:17
@krlmlr Thanks for the heads up! On my answers at least, feel free to fix things like that yourself, if you like. – joran May 23 at 22:21

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.