Friday, December 23, 2011

Programming traps when using "sample"

Standard sample function works differently when it gets single element integer vector as opposed to longer vectors. This can lead to unexpected bugs in R code.

Several times I had a problem with code similar to one given here:

for (i in 1:4) {
      x <- i:4
      print(sample(x))
}
#[1] 4 1 2 3
#[1] 3 2 4
#[1] 4 3
#[1] 3 2 1 4

When looping over different integer vectors it is easy to forget that sample behaves differently when the vector is numeric and contains only one element.

A simple solution to this problem is given below. It guarantees consistent behavior of sampling:

for (i in 1:4) {
      x <- i:4
      print(x[sample(length(x))])
}
#[1] 4 1 2 3
#[1] 3 2 4
#[1] 3 4
#[1] 4

Considering this problem provoked me to think of other possibly unexpected properties of this function. Here is the sample code:

sample(4.3)
#[1] 3 2 1 4
sample(NA)
#[1] NA
sample(as.integer(NA))
#Error in if (length(x) == 1L && is.numeric(x) && x >= 1) { :
#  missing value where TRUE/FALSE needed

Firstly if sample receives a numeric (but not integer) vector with single element it truncates the argument and treats it as integer. This is not something that I would expect.

Secondly sample behaves differently when it is given NA argument of different modes and it produces error if this mode is numeric. Again this is not the expected behavior.

All these properties are worth remembering because they can lead to hard to track bugs in the code that do not show during standard testing.

1 comment:

  1. This is actually documented and shown in the help page for sample, and they give a 'safer' function called 'resample' that works as you might expect. I think its also described in Patrick Burns 'R Inferno' and it has caught out every R programmer in the known universe.

    ReplyDelete

Note: Only a member of this blog may post a comment.