I faced up a strange behaviour in R with the sapply() function. This function is supposed to return a vector, but in the special case where you give it an empty vector, it returns a list.
Correct behaviour with a vector:
a = c("A", "B", "C")
a[a == "B"] # Returns "B"
a[sapply(a, function(x) {x == "B"})] # Returns "B"
Correct behaviour with a NULL value:
a = NULL
a[a == "B"] # Returns NULL
a[sapply(a, function(x) {x == "B"})] # Returns NULL
Strange behaviour with an empty vector:
a = vector()
a[a == "B"] # Returns NULL
a[sapply(a, function(x) {x == "B"})] # Erreur : type 'list' d'indice incorrect
Same error message as with this statement:
a[list()] # Erreur dans a[list()] : type 'list' d'indice incorrect
Why? Is it a bug?
Due to this strange behaviour, I use unlist(lapply()).
1:0is another... – Tommy Mar 12 '12 at 22:42