Q. In R, how is a matrix initialized with values 1 to 9 arranged in three rows?
β
Correct Answer: (A)
matrix(1:9, nrow = 3, ncol = 3)
You must be Logged in to update hint/solution