Unique.Rows {BayesQTLBIC}R Documentation

Unique rows

Description

Return indices of unique rows of a matrix

Usage

Unique.Rows(x)

Arguments

x matrix

Details

The duplicated function is applied to the rows of x

Value

vector of indices of unique rows

Author(s)

R.D. Ball rod.ball@AT@scionresearch.com

Examples

m <- matrix(c(1:3,1:3,2:4,5:7),nc=3,byrow=TRUE)
Unique.Rows(m)
m[Unique.Rows(m),]

[Package BayesQTLBIC version 1.0-0 Index]