Is it possible in R to say - I want all indices from position i to the end of vector/matrix? Say I want a submatrix from 3rd column onwards. I currently only kn
i
You can use the following instruction:
A[, 3:length(A[, 1])]