length(unique(...)) does some possibly unexpected (although thoroughly documented) things when applied to a matrix or data frame.
s <- structure(list(X1 = c(2L, 2L, 2L, 2L, 2L, 1L, 3L, 2L, 2L), X2 = c(1L,
1L, 1L, 2L, 1L, 0L, 2L, 3L, 1L), X3 = c(2L, 1L, 2L, 2L, 0L, 0L,
2L, 3L, 1L), X4 = c(1L, 2L, 2L, 2L, 1L, 2L, 0L, 2L, 2L), X5 = c(1L,
2L, 1L, 2L, 1L, 0L, 1L, 2L, 1L), X6 = c(1L, 2L, 1L, 1L, 1L, 2L,
1L, 2L, 1L)), .Names = c("X1", "X2", "X3", "X4", "X5", "X6"), class = "data.frame", row.names = c(NA,
-9L))
When applied to a data frame, unique returns the unique rows in the data frame. length() then counts the number of columns in the data frame. So in general (I can't think of a counterexample), this will always be equal to ncol(s).
length(unique(s)) ## 6
unique applied to a matrix also returns the unique rows, but now length() counts the total number of elements: for your data this will usually be equivalent to ncol(s)*nrow(s).
length(unique(as.matrix(s))) ## 54
If you want to apply unique to the elements in this situation, you probably want one of the following, all of which collapse the original data frame down to a single vector:
length(unique(as.vector(as.matrix(s)))) ## 4
length(unique(unlist(s))) ## 4
length(unique(c(as.matrix(s)))) ## 4
Whether you want diff(range(x))+1 or length(unique(...)) depends on how you would want to count a data frame composed (for example) entirely of {0,1,2,4} -- should that return 4 or 5? (As @Brian Diggs points out in his answer, diff(range(...))+1 will work on a matrix, without needing to flatten the structure further -- it will also work on an unlist()ed data frame.)
diffgives the difference of the endpoints (in your example, the range is 0 to 3, the difference of which is 3; if the range was 1 to 4, the difference would still be 3. The 0 is a red herring). What you want is the number of integers within the range 0 to 3 which is (assuming that the endpoints are integers) one more than the difference.diff(range(d))+1(as @Tom said in another comment). Again, this would be true if the numbers were 1, 2, 3, and 4. – Brian Diggs May 25 '12 at 18:26length(unique())returns 136 for them, which suggests that they do not in fact have data that consists of only the values 0,1 2 and 3. – joran May 25 '12 at 18:27dto know. – Brian Diggs May 25 '12 at 18:35diff(range(d))+1solves the problem. I was just wondering if R had a more elegant way to solve this problem. Thanks a lot. – Werner B. Hertzog May 25 '12 at 18:40length(unique(unlist(dat)))is what you should be doing, I think. – joran May 25 '12 at 18:52