Unique.Rows {BayesQTLBIC} | R Documentation |
Return indices of unique rows of a matrix
Unique.Rows(x)
x |
matrix |
The duplicated
function is applied to the rows of x
vector of indices of unique rows
R.D. Ball rod.ball@AT@scionresearch.com
m <- matrix(c(1:3,1:3,2:4,5:7),nc=3,byrow=TRUE) Unique.Rows(m) m[Unique.Rows(m),]