Q. What will be the output of the following R code?
> x <- 1:3
> y <- 10:12
> cbind(x, y)
> x <- 1:3
> y <- 10:12
> cbind(x, y)
β
Correct Answer: (B)
x y
[1,] 1 10
[2,] 2 11
[3,] 3 12
You must be Logged in to update hint/solution