x[1:3, 1:3] # Try to access two dimensions of one-dimensional vector # Error in x[1:3, 1:3] : incorrect number of dimensionsUnfortunately, the previous R code leads to the error message “incorrect number of dimensions”.The reason for this is that we have tried to extract two ...