powered by
BASIX.unique returns a matrix with duplicate rows removed. The unique rows ids will be saved as rownames.
BASIX.unique
BASIX.unique(matrix)
a matrix
BASIX.unique is a version of unique specialized on matrices.
unique
The native R solution would be: unique(matrix)
unique(matrix)
This function can be applied to numeric as well as character vectors.
# NOT RUN { mat <- matrix(0,3,3) mat[1,1] <- 1 BASIX.unique(mat) # }
Run the code above in your browser using DataLab