Vidyalelo
R Programming · Q103

Data Structures in R Programming

Programming · R Programming · question 103

Q103

What will be the output of the following R code? > x x[1, , drop = FALSE]

A.
[,1] [,2] [,3]
[1,] 1 3 5
Answer
B.
[,1] [,2] [,3]
[1,] 2 3 5
C.
[,1] [,2] [,3]
[1,] 1 2 5
D.
Error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board