Learn R Programming

BASIX (version 1.2)

BASIX.unique: Extract unique rows of a matrix

Description

BASIX.unique returns a matrix with duplicate rows removed. The unique rows ids will be saved as rownames.

Usage

BASIX.unique(matrix)

Arguments

matrix

a matrix

Details

BASIX.unique is a version of unique specialized on matrices.

The native R solution would be: unique(matrix)

This function can be applied to numeric as well as character vectors.

Examples

Run this code
# NOT RUN {
mat <- matrix(0,3,3)
mat[1,1] <- 1

BASIX.unique(mat)

# }

Run the code above in your browser using DataLab