is it possible to have a matrix with 1 row only in R?
Here is my code:
nas <- which(!is.na(y))
x <- x[nas,]
y <- y[nas]
...
data.frame(y,x)
the idea is that i have a vector y and matrix x. Y can contain some NA values, which i want to find and remove the index of those values from both vector and the matrix.
Later i want to frame y with x. The problem is, however, when there is only one value that is not NA in y. It means i have to remove all but 1 element from y and all but 1 row from x, this having matrix with only 1 row, which seems to be converted to numeric, which seems to break the data.frame operation. I expected it to return frame containing 1 row: y x1 x2 .., instead i get:
y x
1 0 12.0
2 0 14.8
3 0 14.2
4 0 14.8
5 0 2.0
6 0 4.0
7 0 1.0
8 0 2.0
9 0 26.0
10 0 4.0
11 0 6.0
12 0 2.0
13 0 16.0
matrix(1:4, nrow=1)– Patrick Li Sep 26 '12 at 12:26