Testing Vector Equality Suppose we wish to test whether two vectors are equal. The naive approach, using ==, won't work. > x <- 1:3 > y <- c(1,3,4) > …
確定! 回上一頁